I know the usage of Auth guard in Angular and I am just a beginner in angular I just made a basic authentication based on read write access that includes roles like isAdmin or Isguest
But now I want that particular user must be able to access only some routes
Like I have three modules
- A component
- B component
- C component
And all the above components may be child or may not be child routes.
I want that harry user can access to module A and B
Jackson can access to module B and C
Michel can access module A only
So how to architect such type of mechanism in Angular?
Actually I know Auth guard but how can I organise the data like in database to add list of components or something etc etc?
What conditions must I need to add in canActivate ?
A solution by which I need to handle less and be dynamic if tommorrow a new component comes and I need to access grants.
Any great ideas are welcomed...!!