mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +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
25 lines
838 B
JavaScript
25 lines
838 B
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import CurrentUserSettings from 'ghost-admin/mixins/current-user-settings';
|
|
import styleBody from 'ghost-admin/mixins/style-body';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend(styleBody, CurrentUserSettings, {
|
|
settings: service(),
|
|
|
|
titleToken: 'Settings - Integrations',
|
|
classNames: ['settings-view-integrations'],
|
|
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
return this.get('session.user')
|
|
.then(this.transitionAuthor())
|
|
.then(this.transitionEditor());
|
|
},
|
|
|
|
// we don't want to set the model property but we do want to ensure we have
|
|
// up-to-date settings so pause via afterModel
|
|
afterModel() {
|
|
return this.get('settings').reload();
|
|
}
|
|
});
|