discourse-subscriptions/assets/javascripts/discourse/discourse-subscriptions-use...

11 lines
195 B
Plaintext
Raw Normal View History

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() {
2020-09-16 10:53:50 -04:00
this.route("billing", function () {
2019-12-15 18:42:55 -05:00
this.route("payments");
this.route("subscriptions");
});
2020-09-16 10:53:50 -04:00
},
2019-10-24 23:00:59 -04:00
};