diff options
| -rw-r--r-- | api/viewsets.py | 6 | 
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  |