There is something in the roles I don't exactly get. using the [Authorize] attribute
When you have the [Authorize] attribute on the controller and on the action:
- When a role is in both, this role will have access
- When a role is only defined at the Controller, but not at the Action, no access
- When a role is only defined at the Action, but not at the Controller, no access
I get that, that's logical. You need access to the controller before you can run an action.
What I dont get is why this doesnt work:
[Authorize(Roles = "Algemeen Beheer, Admin, Coordinator, Secretariaat")]
public class FacturatieGegevensController : Controller {
[Authorize(Users = "Stefan.coordinator", Roles = "Algemeen Beheer, Admin")]
public ActionResult Create(int instID) {
return View();
}
}
When I am logged in as user Stefan.coordinator which has the role coordinator, I can access the controller, but I can not access the Create Action.
I thought this would be an OR relation between Users and Roles. Is it not? and how do I get this to work?