mirror of
https://github.com/discourse/discourse.git
synced 2024-12-17 04:23:43 +08:00
20 lines
459 B
JavaScript
20 lines
459 B
JavaScript
import { loadTopicView } from 'discourse/models/topic';
|
|
|
|
export default Discourse.Route.extend({
|
|
model(params) {
|
|
const topic = this.store.createRecord("topic", { id: params.id });
|
|
return loadTopicView(topic).then(() => topic);
|
|
},
|
|
|
|
afterModel(topic) {
|
|
topic.set("details.notificationReasonText", null);
|
|
},
|
|
|
|
actions: {
|
|
didTransition() {
|
|
this.controllerFor("application").set("showFooter", true);
|
|
return true;
|
|
}
|
|
}
|
|
});
|