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:
parent
77134ad583
commit
1a6568d8e2
1 changed files with 0 additions and 37 deletions
|
@ -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);
|
|
||||||
}
|
|
||||||
});
|
|
Loading…
Reference in a new issue