mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 21:20:41 +08:00
12 lines
289 B
JavaScript
Vendored
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" });
|
|
});
|
|
});
|
|
},
|
|
};
|