discourse-subscriptions/assets/javascripts/discourse/discourse-subscriptions-user-route-map.js.es6

11 lines
195 B
Plaintext
Raw Normal View History

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