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
Implement the functionality for adding, removing, and storing user roles to be used for assigning users as event hosts, merch distributors, staff, and other potential future roles.
Routes to add:
POST /admin/role - create a new role to assign to users
DELETE /admin/role - delete an existing role - should automatically un-assign every user to that role before deletion
POST /user/role - support both adding and removing user roles by user uuid in one request. Requires admin permissions, and allows admins to manage user roles all in one request (using something like addedRoles, removedRoles, and userIds)
The text was updated successfully, but these errors were encountered:
Potentially add a HIDDEN/DISABLED/BLOCKED role where some users (i.e. dummy accounts in the portal used for testing production-level things) should be hidden/blocked from being searched up, showing up the leaderboard, checking into events, and other activities.
Implement the functionality for adding, removing, and storing user roles to be used for assigning users as event hosts, merch distributors, staff, and other potential future roles.
Routes to add:
POST /admin/role
- create a new role to assign to usersDELETE /admin/role
- delete an existing role - should automatically un-assign every user to that role before deletionPOST /user/role
- support both adding and removing user roles by user uuid in one request. Requires admin permissions, and allows admins to manage user roles all in one request (using something likeaddedRoles
,removedRoles
, anduserIds
)The text was updated successfully, but these errors were encountered: