Skip to content

Commit

Permalink
Enable PATCH and DELETE member to be cookie authenticated
Browse files Browse the repository at this point in the history
  • Loading branch information
seanh committed Nov 27, 2024
1 parent da67cc8 commit 751be6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion h/security/policy/_api_cookie.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
COOKIE_AUTHENTICATABLE_API_REQUESTS = [
("api.groups", "POST"), # Create a new group.
("api.group", "PATCH"), # Edit an existing group.
("api.group_members", "GET"), # List group members
("api.group_members", "GET"), # List group members.
("api.group_member", "PATCH"), # Edit group membership.
("api.group_member", "DELETE"), # Remove group member.
]


Expand Down

0 comments on commit 751be6c

Please sign in to comment.