discourse/app/assets/javascripts/admin/addon/routes/admin-customize-themes-index.js
Krzysztof Kotlarek c4ff6bd40e
DEV: remove old themes/components code (#32875)
Recently, themes page was rebranded and put
`/admin/config/customize/themes`. In this PR, old
`/admin/customize/themes` was removed. In addition, when an admin visits
an old URL, they are redirected to the new one.
2025-05-26 09:21:15 +08:00

10 lines
259 B
JavaScript
Vendored

import Route from "@ember/routing/route";
import { service } from "@ember/service";
export default class AdminCustomizeThemesIndexRoute extends Route {
@service router;
beforeModel() {
this.router.transitionTo("adminConfig.customize.themes");
}
}