mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 00:59:46 +08:00
35e6e5ff67
- error pages - search results pages - list of all tags - topics list of a specific tag - user leaderboard
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
export default Discourse.Route.extend({
|
|
serialize() { return ""; },
|
|
|
|
actions: {
|
|
didTransition() {
|
|
this.controllerFor("application").set("showFooter", true);
|
|
return true;
|
|
}
|
|
}
|
|
});
|