mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
bf676ddfb0
refs: https://github.com/TryGhost/Team/issues/1376 - renamed finishing touches file to done - no last modal, just the done screen for first start - added options for next steps
18 lines
483 B
JavaScript
18 lines
483 B
JavaScript
import Route from '@ember/routing/route';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class SetupFinishingTouchesRoute extends Route {
|
|
@service settings;
|
|
@service themeManagement;
|
|
|
|
model() {
|
|
this.themeManagement.setPreviewType('homepage');
|
|
this.themeManagement.updatePreviewHtmlTask.perform();
|
|
}
|
|
|
|
deactivate() {
|
|
// rollback any unsaved setting changes when leaving
|
|
this.settings.rollbackAttributes();
|
|
}
|
|
}
|