mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:29:18 +08:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default DiscourseRoute.extend({
|
|
beforeModel() {
|
|
this.replaceWith(
|
|
"adminWatchedWords.action",
|
|
this.modelFor("adminWatchedWords")[0].nameKey
|
|
);
|
|
},
|
|
});
|