diff options
| author | 2018-11-30 18:48:32 +0000 | |
|---|---|---|
| committer | 2018-11-30 18:48:32 +0000 | |
| commit | 1435d100286c0ea434c2995d1cd993045b2103f0 (patch) | |
| tree | 3162c572bb2b85d5362ecab2d3595482c9244906 /api/viewsets.py | |
| parent | Set up image pushing and building on Azure. (#152) (diff) | |
Fixed member route typos
Diffstat (limited to '')
| -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 | 
