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