Skip to content

Instantly share code, notes, and snippets.

@house9
Created April 22, 2011 15:22
Show Gist options
  • Save house9/936875 to your computer and use it in GitHub Desktop.
Save house9/936875 to your computer and use it in GitHub Desktop.
AuthorizeForAttribute-Usage.cs
[AuthorizeFor]
public ActionResult Index()
{
// ....
[AuthorizeFor(Roles = "Create, View")]
public ActionResult Create()
{
// ....
[HttpPost]
[AuthorizeFor(Roles = "Create")]
public ActionResult Create(ViewModel.Foo foo)
{
// ....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment