aboutsummaryrefslogtreecommitdiffstats
path: root/api/viewsets.py
diff options
context:
space:
mode:
authorGravatar ImportErr <[email protected]>2018-11-30 18:48:32 +0000
committerGravatar ImportErr <[email protected]>2018-11-30 18:48:32 +0000
commit1435d100286c0ea434c2995d1cd993045b2103f0 (patch)
tree3162c572bb2b85d5362ecab2d3595482c9244906 /api/viewsets.py
parentSet up image pushing and building on Azure. (#152) (diff)
Fixed member route typos
Diffstat (limited to 'api/viewsets.py')
-rw-r--r--api/viewsets.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/api/viewsets.py b/api/viewsets.py
index de5ddaf6..86ab5758 100644
--- a/api/viewsets.py
+++ b/api/viewsets.py
@@ -365,7 +365,7 @@ class TagViewSet(ModelViewSet):
- 201: returned on success
- 400: if one of the given fields is invalid
- ### PUT /bot/members/<title:str>
+ ### PUT /bot/tags/<title:str>
Update the tag with the given `title`.
#### Request body
@@ -383,7 +383,7 @@ class TagViewSet(ModelViewSet):
- 400: if the request body was invalid, see response body for details
- 404: if the tag with the given `title` could not be found
- ### PATCH /bot/members/<title:str>
+ ### PATCH /bot/tags/<title:str>
Update the tag with the given `title`.
#### Request body
@@ -401,7 +401,7 @@ class TagViewSet(ModelViewSet):
- 400: if the request body was invalid, see response body for details
- 404: if the tag with the given `title` could not be found
- ### DELETE /bot/members/<title:str>
+ ### DELETE /bot/tags/<title:str>
Deletes the tag with the given `title`.
#### Status codes