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
Use Case: In a CRM dashboard, it's common to have role-based access control for the pages a user can see, which is usually implemented using RBAC. Digging into details, we want:
Role-based access control for pages, plus possibly access control on UI elements that users can see and interact with on a page
A 404 page displayed when a user visits a page they don't have permission to access
Dynamic page (document) title updates
The above requirements are from a product feature perspective. From a developer perspective, we expect the codebase to be configurable and extensible.
Tech Stack: React Query and React Router are my preferred frontend stacks, they will be used in my solution
RBAC for React App
Use Case: In a CRM dashboard, it's common to have role-based access control for the pages a user can see, which is usually implemented using RBAC. Digging into details, we want:
The above requirements are from a product feature perspective. From a developer perspective, we expect the codebase to be configurable and extensible.
Tech Stack: React Query and React Router are my preferred frontend stacks, they will be used in my solution