11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
export default {
|
|
resource: "user",
|
|
path: "users/:username",
|
|
map() {
|
|
this.route("billing", function () {
|
|
this.route("payments");
|
|
this.route("subscriptions");
|
|
});
|
|
},
|
|
};
|