Guest User

Untitled

a guest
Feb 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. [Authorize]
  2. public class MyController: Controller
  3. {
  4. [HttpGet("/products")]
  5. [Authorize(Roles = "Administrator")]
  6. public IActionResult ListProducts()
  7. {
  8. // ...
  9. }
  10.  
  11. [HttpGet("/products")]
  12. [Authorize(Roles = "Supervisor")]
  13. public IActionResult ListProducts()
  14. {
  15. // ...
  16. }
  17. }
Add Comment
Please, Sign In to add comment