Skip to content

Commit

Permalink
Fix WAC groups routes
Browse files Browse the repository at this point in the history
  • Loading branch information
srosset81 committed Nov 25, 2024
1 parent 52db9a7 commit c0fec29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/middleware/packages/webacl/routes/getRoutes.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ const getRoutes = (basePath, podProvider) => {
authentication: true,
aliases: {
'POST /': [parseHeader, 'webacl.group.api_create'],
'GET /:id*': ['webacl.group.api_getMembers'],
'GET /:id+': ['webacl.group.api_getMembers'],
'GET /': ['webacl.group.api_getGroups'],
'DELETE /:id*': ['webacl.group.api_delete'],
'PATCH /:id*': ['webacl.group.api_addMember'],
'PUT /:id*': ['webacl.group.api_removeMember']
'DELETE /:id+': ['webacl.group.api_delete'],
'PATCH /:id+': ['webacl.group.api_addMember'],
'PUT /:id+': ['webacl.group.api_removeMember']
},
bodyParsers: {
json: true
Expand Down

0 comments on commit c0fec29

Please sign in to comment.