mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
6dfafdc801
refs https://github.com/TryGhost/Ghost/issues/9865, https://github.com/TryGhost/Ghost/issues/9942 - Apps are becoming Integrations that cover the existing built-in integrations as well as new custom integrations - custom Integrations will comprise of API keys for the Admin and Content APIs and custom-registered webhooks
28 lines
760 B
JavaScript
28 lines
760 B
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import styleBody from 'ghost-admin/mixins/style-body';
|
|
|
|
export default AuthenticatedRoute.extend(styleBody, {
|
|
titleToken: 'AMP',
|
|
|
|
classNames: ['settings-view-integrations-amp'],
|
|
|
|
actions: {
|
|
save() {
|
|
this.get('controller').send('save');
|
|
},
|
|
|
|
willTransition(transition) {
|
|
let controller = this.get('controller');
|
|
let settings = controller.get('settings');
|
|
let modelIsDirty = settings.get('hasDirtyAttributes');
|
|
|
|
if (modelIsDirty) {
|
|
transition.abort();
|
|
controller.send('toggleLeaveSettingsModal', transition);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
});
|