2019-12-15 18:42:55 -05:00
|
|
|
import Route from "@ember/routing/route";
|
2023-12-01 13:30:36 -05:00
|
|
|
import { inject as service } from "@ember/service";
|
2019-12-15 18:42:55 -05:00
|
|
|
|
|
|
|
export default Route.extend({
|
2023-12-01 13:30:36 -05:00
|
|
|
router: service(),
|
2019-12-15 18:42:55 -05:00
|
|
|
templateName: "user/billing/index",
|
|
|
|
|
|
|
|
redirect() {
|
2023-12-01 13:30:36 -05:00
|
|
|
this.router.transitionTo("user.billing.subscriptions.index");
|
2020-09-16 10:53:50 -04:00
|
|
|
},
|
2019-12-15 18:42:55 -05:00
|
|
|
});
|