Skip to content

Instantly share code, notes, and snippets.

@kkadir
Created March 3, 2020 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkadir/3a569552dccf447cbed788457d42717f to your computer and use it in GitHub Desktop.
Save kkadir/3a569552dccf447cbed788457d42717f to your computer and use it in GitHub Desktop.
A sample usage of the custom PermissionsAttribute.
...
...
[Permissions(Permissions = new[] { "Read", "Write" },
Roles = new[] { "Admin"})]
[HttpGet("{id}")]
public async Task<IActionResult> GetAsync(int id)
{
...
}
...
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment