10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
|
import Route from "@ember/routing/route";
|
||
|
|
||
|
export default Route.extend({
|
||
|
templateName: "user/billing/index",
|
||
|
|
||
|
redirect() {
|
||
|
this.transitionTo("user.billing.subscriptions");
|
||
|
}
|
||
|
});
|