discourse/plugins/discourse-subscriptions/assets/javascripts/discourse/discourse-subscriptions-user-route-map.js
2025-07-15 16:38:05 +02:00

12 lines
289 B
JavaScript
Vendored

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" });
});
});
},
};