discourse/app/assets/javascripts/admin/addon/routes/admin-customize-index.js
Arpit Jalan e53b474557
FIX: allow moderators to access /admin/customize/watched_words (#12816)
Moderators were unable to access `/admin/customize/watched_words`
feature. This was regressed in 61860098d9
2021-04-23 18:51:45 +05:30

11 lines
247 B
JavaScript

import Route from "@ember/routing/route";
export default Route.extend({
beforeModel() {
if (this.currentUser.admin) {
this.transitionTo("adminCustomizeThemes");
} else {
this.transitionTo("adminWatchedWords");
}
},
});