Question

How to add Roles and Users to the same action on a controller.

I tried:

[Authorize(Roles = "admin" , Users = "userName")]
public ActionResult Action()
{
....
....
}

[Authorize(Roles = "admin")]
[Authorize(Users = "userName")]
public ActionResult Action()
{
....
....
}

Do i have to create a custom Authorize Attribute?

Thanks

Était-ce utile?

La solution

This is the correct way:

[Authorize(Users="userName", Roles="admin")]
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top