mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:37:16 +08:00
17 lines
312 B
Plaintext
17 lines
312 B
Plaintext
|
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);
|
||
|
}
|
||
|
});
|