Redirect authors and editors away from debug page

A signed in user with role author or editor will be redirected back to
/ghost.

closes #3292
This commit is contained in:
Felix Rieseberg 2014-07-23 15:30:18 -04:00
parent 302b360194
commit ed0ac32ebb

View File

@ -4,11 +4,21 @@ import loadingIndicator from 'ghost/mixins/loading-indicator';
var DebugRoute = Ember.Route.extend(Ember.SimpleAuth.AuthenticatedRouteMixin, styleBody, loadingIndicator, {
classNames: ['settings'],
beforeModel: function () {
var self = this;
this.store.find('user', 'me').then(function (user) {
if (user.get('isAuthor') || user.get('isEditor')) {
self.transitionTo('posts');
}
});
},
model: function () {
return this.store.find('setting', { type: 'blog,theme' }).then(function (records) {
return records.get('firstObject');
});
}
});
export default DebugRoute;