mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 22:44:07 +03:00
69d4852a6d
closes #4260 - Adds "tags" route inside of the settings routes. - Adds this route to router.js - Links the route from the settings.hbs template - Adds demo tags html in tag.hbs template - Adds flag for tagsUI
7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
var SettingsController = Ember.Controller.extend({
|
|
showApps: Ember.computed.bool('config.apps'),
|
|
showTags: Ember.computed.bool('config.tagsUI')
|
|
});
|
|
|
|
export default SettingsController;
|