-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
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:
- 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