discourse/app/assets/javascripts/admin/addon/routes/admin-customize-email-style-index.js
Isaac Janzen 33db93c9b2
DEV: Update replaceWith on Route (#22645)
Per https://deprecations.emberjs.com/v3.x/#toc_routing-transition-methods

We are upgrading all `this.replaceWith` calls on routes to directly call the router service (`this.router.replaceWith`)
2023-07-18 15:05:53 -05:00

11 lines
281 B
JavaScript

import Route from "@ember/routing/route";
import { inject as service } from "@ember/service";
export default class AdminCustomizeEmailStyleIndexRoute extends Route {
@service router;
beforeModel() {
this.router.replaceWith("adminCustomizeEmailStyle.edit", "html");
}
}