034a230365
refs https://github.com/TryGhost/Team/issues/2561 - added simple socket-io implementation to Ghost server - added alpha flag for websockets - added route in admin to test websockets using a simple counter stored in server local memory (refreshes on reboot)
18 lines
439 B
JavaScript
18 lines
439 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;
|
|
|
|
beforeModel() {
|
|
super.beforeModel(...arguments);
|
|
|
|
const user = this.session.user;
|
|
|
|
if (!user.isAdmin) {
|
|
return this.transitionTo('settings.staff.user', user);
|
|
}
|
|
}
|
|
}
|