mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-03 20:31:50 -05:00
19 lines
459 B
JavaScript
19 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;
|
|
}
|
|
}
|
|
});
|