mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 03:22:21 +03:00
30a5ac904d
no issue - following from the `settings/general` redesign, navigation and themes management are now co-located in `settings/design`
15 lines
289 B
JavaScript
15 lines
289 B
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
|
|
export default AuthenticatedRoute.extend({
|
|
|
|
model() {
|
|
return this.get('store').findAll('theme');
|
|
},
|
|
|
|
actions: {
|
|
cancel() {
|
|
this.transitionTo('settings.design');
|
|
}
|
|
}
|
|
});
|