2019-12-15 18:42:55 -05:00
|
|
|
import Route from "@ember/routing/route";
|
2024-11-19 05:31:14 -05:00
|
|
|
import { service } from "@ember/service";
|
2019-12-15 18:42:55 -05:00
|
|
|
|
2024-11-29 10:42:50 -05:00
|
|
|
export default class UserBillingIndexRoute extends Route {
|
|
|
|
@service router;
|
|
|
|
|
|
|
|
templateName = "user/billing/index";
|
2019-12-15 18:42:55 -05:00
|
|
|
|
|
|
|
redirect() {
|
2023-12-01 13:30:36 -05:00
|
|
|
this.router.transitionTo("user.billing.subscriptions.index");
|
2024-11-29 10:42:50 -05:00
|
|
|
}
|
|
|
|
}
|