1
0
Fork 0
forked from sr2/cloud-api

fix: remove trailing slash and plurals in paths

This commit is contained in:
Chris Milne 2026-06-11 16:14:22 +01:00
parent c74e895bf1
commit 1a6a6ad97d
9 changed files with 20 additions and 20 deletions

View file

@ -378,7 +378,7 @@ async def add_group_user(
@router.delete(
path="/group/permissions",
path="/group/permission",
summary="Removes a permission from the group",
status_code=status.HTTP_200_OK,
response_model=IAMDeleteGroupPermissionResponse,
@ -388,7 +388,7 @@ async def add_group_user(
},
},
)
async def remove_group_permissions(
async def remove_group_permission(
db: db_dependency,
group_model: group_model_query_dependency,
perm_model: perm_model_query_dependency,