mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
c3bb7cb396
No Issue - Routes, views and controllers updated for about page - fix up tests and add redirect check
11 lines
369 B
JavaScript
11 lines
369 B
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import loadingIndicator from 'ghost/mixins/loading-indicator';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
var SettingsAboutRoute = AuthenticatedRoute.extend(styleBody, loadingIndicator, {
|
|
beforeModel: function () {
|
|
this.transitionTo('about');
|
|
}
|
|
});
|
|
|
|
export default SettingsAboutRoute;
|