mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 03:22:21 +03:00
cf36851265
replaces #41, #60 - update ember-suave and grunt-jscs to 3.0 - standardize Ember global de-structuring rules across app & tests
15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {
|
|
computed,
|
|
inject: {controller},
|
|
Controller
|
|
} = Ember;
|
|
const {alias} = computed;
|
|
|
|
export default Controller.extend({
|
|
appsController: controller('settings.apps'),
|
|
|
|
slack: alias('appsController.model.slack.firstObject')
|
|
});
|