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:
commit
6f9d7913b6
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…
Add table
Reference in a new issue