aboutsummaryrefslogtreecommitdiffstats
path: root/api/viewsets.py
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-08-16 20:53:38 +0200
committerGravatar Johannes Christ <[email protected]>2018-08-16 20:53:38 +0200
commita32fdf1521515506d4bb64fa2d706d2070595003 (patch)
treeeef95582f7ae8e6c17eee208daf84fcaa2a48a17 /api/viewsets.py
parentNamespace `bot` endpoints. (diff)
Small documentation fixes.
Diffstat (limited to 'api/viewsets.py')
-rw-r--r--api/viewsets.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/api/viewsets.py b/api/viewsets.py
index 97b0f552..5e38bdc9 100644
--- a/api/viewsets.py
+++ b/api/viewsets.py
@@ -11,7 +11,7 @@ class SnakeNameViewSet(ViewSet):
## Routes
### GET /bot/snake-names
- By default, return a single random snake name in the following format:
+ By default, return a single random snake name as JSON in the following format:
>>> {
... 'name': "Python",
@@ -27,6 +27,9 @@ class SnakeNameViewSet(ViewSet):
... {'name': "Python 3", 'scientific': "Langus greatus"},
... {'name': "Python 2", 'scientific': "Langus decentus"}
... ]
+
+ ## Authentication
+ Requires a API token.
"""
serializer_class = SnakeNameSerializer