Greetings,
I have a react spa with asp.net application. We would like to do the following:
- Create a permission called “Delete”
- Create a role called “Manager” and “Supervisor”
- Add the permission “Delete” to both “Manager” and “Supervisor”
- Then we would ultimately like to do something like
[Authorize("Delete)]
We were able to create a group called “Delete” and assign it to both groups “Manager” and “Supervisor” using the group rules. So it looks like [Authorize(Roles = "Delete)]
. However, this will become very messy. Is there a better way to do this?
I would something like what is shown with auth0 in JWT Bearer Authentication and Authorization for ASP.NET Core 5 – sandrino.dev.
And if there’s no way to do something like this now, is there any plans for this feature in the future?
Appreciate any feedback. Thanks