File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 33
33
34
34
def root (request ):
35
35
return HttpResponse (
36
+ "<h2>ScanAPI Demo API</h2>"
36
37
"<a href=https://demo.scanapi.dev/api/health>https://demo.scanapi.dev/api/health</a> (GET)<br>"
37
38
"<a href=https://demo.scanapi.dev/api/devs>https://demo.scanapi.dev/api/devs</a> (GET, POST)<br>"
38
39
"<a href=https://demo.scanapi.dev/api/devs?newOpportunities=true>https://demo.scanapi.dev/api/devs?newOpportunities=true</a> (GET)<br>"
Original file line number Diff line number Diff line change 4
4
5
5
def home (request ):
6
6
return HttpResponse (
7
- "Welcome to ScanAPI Demo."
8
- "\n \n Access the demo api at: https://demo.scanapi.dev/api"
7
+ "<h2>ScanAPI Demo</h2>"
8
+ "<p>This is an application to help showing how ScanAPI works</p>"
9
+ "<p>Access the demo API at: <a href=https://demo.scanapi.dev/api>https://demo.scanapi.dev/api</a></p>"
9
10
)
10
11
11
12
You can’t perform that action at this time.
0 commit comments