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-10-24 23:00:59 -04:00
|
|
|
this.route("billing");
|
2019-10-27 23:48:59 -04:00
|
|
|
this.route("subscriptions");
|
2019-10-24 22:23:32 -04:00
|
|
|
}
|
2019-10-24 23:00:59 -04:00
|
|
|
};
|