discourse-subscriptions/assets/javascripts/discourse/discourse-subscriptions-use...

13 lines
289 B
JavaScript

export default {
resource: "user",
path: "users/:username",
map() {
this.route("billing", function () {
this.route("payments");
this.route("subscriptions", function () {
this.route("card", { path: "/card/:stripe-subscription-id" });
});
});
},
};