mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
0b1497a75b
closes #1993 - remove the feature/config flag that means code injection has to be enabled
27 lines
1.2 KiB
JavaScript
27 lines
1.2 KiB
JavaScript
import Ember from 'ember';
|
|
var SettingsController = Ember.Controller.extend({
|
|
|
|
showGeneral: Ember.computed('session.user.name', function () {
|
|
return this.get('session.user.isAuthor') || this.get('session.user.isEditor') ? false : true;
|
|
}),
|
|
showUsers: Ember.computed('session.user.name', function () {
|
|
return this.get('session.user.isAuthor') ? false : true;
|
|
}),
|
|
showTags: Ember.computed('session.user.name', function () {
|
|
return this.get('session.user.isAuthor') ? false : true;
|
|
}),
|
|
showNavigation: Ember.computed('session.user.name', function () {
|
|
return this.get('session.user.isAuthor') || this.get('session.user.isEditor') ? false : true;
|
|
}),
|
|
showCodeInjection: Ember.computed('session.user.name', function () {
|
|
return this.get('session.user.isAuthor') || this.get('session.user.isEditor') ? false : true;
|
|
}),
|
|
showLabs: Ember.computed('session.user.name', function () {
|
|
return this.get('session.user.isAuthor') || this.get('session.user.isEditor') ? false : true;
|
|
}),
|
|
showAbout: Ember.computed('session.user.name', function () {
|
|
return this.get('session.user.isAuthor') ? false : true;
|
|
})
|
|
});
|
|
|
|
export default SettingsController;
|