e68db848dc
refs. https://github.com/TryGhost/Product/issues/3949 --------- Co-authored-by: Jono Mingard <reason.koan@gmail.com> Co-authored-by: Daniel Lockyer <hi@daniellockyer.com>
19 lines
485 B
JavaScript
19 lines
485 B
JavaScript
import AuthenticatedRoute from './authenticated';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
// need this to be authenticated
|
|
export default class WebsocketRoute extends AuthenticatedRoute {
|
|
@service session;
|
|
@service router;
|
|
|
|
beforeModel() {
|
|
super.beforeModel(...arguments);
|
|
|
|
const user = this.session.user;
|
|
|
|
if (!user.isAdmin) {
|
|
return this.router.transitionTo('settings-x.settings-x', `staff/${user.slug}`);
|
|
}
|
|
}
|
|
}
|