mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
88449ed639
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
6 lines
226 B
JavaScript
6 lines
226 B
JavaScript
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
|
|
import Route from '@ember/routing/route';
|
|
|
|
export default Route.extend(AuthenticatedRouteMixin, {
|
|
authenticationRoute: 'signin'
|
|
});
|