You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an endpoint in the ProjectsController to manage project access permissions. This will allow admins to update the list of users and their permissions for a specific project.
Endpoint:
Add a PATCH endpoint to the ProjectsController.
URL: /api/projects/{projectId}/access
HTTP Method: PATCH
Request:
Accept a payload containing a list of users and their corresponding permissions.
Example structure (the structure will be a little bit different because is a JsonPatchDocument):
Create an endpoint in the
ProjectsController
to manage project access permissions. This will allow admins to update the list of users and their permissions for a specific project.Endpoint:
PATCH
endpoint to theProjectsController
./api/projects/{projectId}/access
PATCH
Request:
JsonPatchDocument
):Logic:
Validation:
AccessControlService
for that.The text was updated successfully, but these errors were encountered: