Guest User

Untitled

a guest
Nov 19th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const { Unauthorized } = require('feathers-errors');
  2.  
  3. return function() {
  4. return function(context) {
  5. if(context.params.user.roles.indexOf('admin') === -1) {
  6. throw new Unauthorized('You are not allowed to access this');
  7. }
  8. }
  9. }
Add Comment
Please, Sign In to add comment