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