mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
17 lines
312 B
Text
17 lines
312 B
Text
|
export default Discourse.Route.extend({
|
||
|
titleToken() {
|
||
|
return I18n.t('admin_title');
|
||
|
},
|
||
|
|
||
|
activate() {
|
||
|
this.controllerFor("application").setProperties({
|
||
|
showTop: false,
|
||
|
showFooter: false,
|
||
|
});
|
||
|
},
|
||
|
|
||
|
deactivate() {
|
||
|
this.controllerFor("application").set("showTop", true);
|
||
|
}
|
||
|
});
|