mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
b167f0afd5
no issue - moves integration routes around to match ember's concept of nested routes (nested routes reflect nested UI not nested URLs) - sets us up for having a `settings.integrations.new` modal route that sits on top of the index screen
8 lines
217 B
JavaScript
8 lines
217 B
JavaScript
/* eslint-disable ghost/ember/alias-model-in-controller */
|
|
import Controller from '@ember/controller';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default Controller.extend({
|
|
settings: service()
|
|
});
|