mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 13:34:58 +08:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
export default Discourse.Route.extend({
|
|
serialize() {
|
|
return "";
|
|
},
|
|
|
|
actions: {
|
|
didTransition() {
|
|
this.controllerFor("application").set("showFooter", true);
|
|
return true;
|
|
}
|
|
}
|
|
});
|