0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00

remove unused feature controller

This commit is contained in:
Austin Burdine 2016-04-28 12:22:54 -05:00
parent 77134ad583
commit 1a6568d8e2

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);
}
});