2019-10-25 13:23:32 +11:00
|
|
|
export default {
|
2019-10-25 14:00:59 +11:00
|
|
|
resource: "user",
|
|
|
|
|
path: "users/:username",
|
2019-10-25 13:23:32 +11:00
|
|
|
map() {
|
2020-09-16 09:53:50 -05:00
|
|
|
this.route("billing", function () {
|
2019-12-16 10:42:55 +11:00
|
|
|
this.route("payments");
|
2022-07-06 07:23:27 +05:30
|
|
|
this.route("subscriptions", function () {
|
|
|
|
|
this.route("card", { path: "/card/:stripe-subscription-id" });
|
|
|
|
|
});
|
2019-12-16 10:42:55 +11:00
|
|
|
});
|
2020-09-16 09:53:50 -05:00
|
|
|
},
|
2019-10-25 14:00:59 +11:00
|
|
|
};
|