Skip to content

Commit

Permalink
[fix] Allow own user change (HumanSignal#1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
triklozoid authored Oct 19, 2021
1 parent 25ba33d commit 4370426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion label_studio/users/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class UserAPI(viewsets.ModelViewSet):
GET=all_permissions.organizations_view,
PUT=all_permissions.organizations_change,
POST=all_permissions.organizations_change,
PATCH=all_permissions.organizations_change,
PATCH=all_permissions.organizations_view,
DELETE=all_permissions.organizations_change,
)
http_method_names = ['get', 'post', 'head', 'patch', 'delete']
Expand Down

0 comments on commit 4370426

Please sign in to comment.