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() {
|
2019-12-16 10:42:55 +11:00
|
|
|
this.route("billing", function() {
|
|
|
|
|
this.route("payments");
|
|
|
|
|
this.route("subscriptions");
|
|
|
|
|
});
|
2019-10-25 13:23:32 +11:00
|
|
|
}
|
2019-10-25 14:00:59 +11:00
|
|
|
};
|