0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Merge pull request #6772 from acburdine/remove-feature-controller

Remove unused feature controller
This commit is contained in:
Kevin Ansfield 2016-05-02 08:31:33 +01:00
commit 6f9d7913b6

View file

@ -1,37 +0,0 @@
import Ember from 'ember';
const {Controller, PromiseProxyMixin, computed} = Ember;
const {alias} = computed;
export default Controller.extend(PromiseProxyMixin, {
setting: alias('content'),
labs: computed('isSettled', 'setting.labs', function () {
let value = {};
if (this.get('isFulfilled')) {
try {
value = JSON.parse(this.get('setting.labs') || {});
} catch (err) {
value = {};
}
}
return value;
}),
publicAPI: computed('config.publicAPI', 'labs.publicAPI', function () {
return this.get('config.publicAPI') || this.get('labs.publicAPI');
}),
init() {
this._super(...arguments);
let promise = this.store.query('setting', {type: 'blog,theme'}).then((settings) => {
return settings.get('firstObject');
});
this.set('promise', promise);
}
});