My application has user groups that are customizable, that is, the end user creates and gives access to certain permissions.
For this, I have my records
Module, Menu, Item, Option
Module = Financial, Registration, etc. Menu = Accounts, Financial Setup, etc. Item = Customer, Accounts Payable, etc. Option = New, Change, Delete, Preview
In this project, I used ASP.NET MVC4 and Forms Authentication. And to filter define these custom "ROLES", I have my filter customizable in my controllers.
I do not know if it was clear.
Now I have a new ASP.NET MVC5 project and I will use ASP.NET Identity for authorization and authentication of my users.
I would like to know if the new Asp.net Identity Roles, I have these customizable Roles, or I will also have to do this filter again.
Because in the examples I've seen so far, the only way to check the role, would be to Authorize (Role="Name Role")
I looked for other examples of role, also the same form.