2019-10-24 22:23:32 -04:00
|
|
|
export default {
|
2019-10-24 23:00:59 -04:00
|
|
|
resource: "user",
|
|
|
|
path: "users/:username",
|
2019-10-24 22:23:32 -04:00
|
|
|
map() {
|
2019-12-15 18:42:55 -05:00
|
|
|
this.route("billing", function() {
|
|
|
|
this.route("payments");
|
|
|
|
this.route("subscriptions");
|
|
|
|
});
|
2019-10-24 22:23:32 -04:00
|
|
|
}
|
2019-10-24 23:00:59 -04:00
|
|
|
};
|