mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default class AdminWatchedWordsIndexRoute extends DiscourseRoute {
|
|
beforeModel() {
|
|
this.replaceWith(
|
|
"adminWatchedWords.action",
|
|
this.modelFor("adminWatchedWords")[0].nameKey
|
|
);
|
|
}
|
|
}
|