mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-13 15:04:53 +00:00
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
import Route from "@ember/routing/route";
|
|
|
|
export default Route.extend({
|
|
templateName: "user/billing/index",
|
|
|
|
redirect() {
|
|
this.transitionTo("user.billing.subscriptions");
|
|
},
|
|
});
|