Files

13 lines
289 B
JavaScript
Raw Permalink Normal View History

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