mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
7 lines
217 B
JavaScript
7 lines
217 B
JavaScript
import Route from 'ember-route';
|
|
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
|
|
|
|
export default Route.extend(AuthenticatedRouteMixin, {
|
|
authenticationRoute: 'signin'
|
|
});
|