I\'d like to authorize users to perform specific actions within my controllers. I\'ve found the ASP.NET tutorial which explains how to allow individual users to perform specifi
You want to use the Roles property. Note that this can be a comma-separated list of roles.
[Authorize(Roles=@"domain\group")]