UX: move logs/watched_words to customize/watched_words in admin section (#12571)

https://meta.discourse.org/t/where-is-auto-tag-and-auto-replace/184261
This commit is contained in:
Arpit Jalan
2021-04-01 11:44:17 +05:30
committed by GitHub
parent c478ffc662
commit 61860098d9
31 changed files with 88 additions and 81 deletions

View File

@@ -97,6 +97,14 @@ export default function () {
this.route("edit", { path: "/:field_name" });
}
);
this.route(
"adminWatchedWords",
{ path: "/watched_words", resetNamespace: true },
function () {
this.route("index", { path: "/" });
this.route("action", { path: "/action/:action_id" });
}
);
}
);
@@ -152,14 +160,6 @@ export default function () {
this.route("term", { path: "/term" });
}
);
this.route(
"adminWatchedWords",
{ path: "/watched_words", resetNamespace: true },
function () {
this.route("index", { path: "/" });
this.route("action", { path: "/action/:action_id" });
}
);
}
);