Merge branch 'master' into clostridium

* master:
  User permission error handling
This commit is contained in:
Matthew Dillon 2015-11-17 09:34:43 -07:00
commit 838588da54
2 changed files with 4 additions and 0 deletions

View file

@ -11,6 +11,8 @@ export default Route.extend({
if (!user.get('isAdmin')) {
this.transitionTo('protected.index');
}
}, () => {
this.transitionTo('protected.index');
});
},

View file

@ -15,6 +15,8 @@ export default Route.extend({
if (!user.get('isAdmin') && user.get('id') !== user_id) {
this.transitionTo('protected.users.index');
}
}, () => {
this.transitionTo('protected.users.index');
});
},