mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-17 00:45:08 +00:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
export default {
|
|
resource: "user",
|
|
path: "users/:username",
|
|
map() {
|
|
this.route("billing", function() {
|
|
this.route("payments");
|
|
this.route("subscriptions");
|
|
});
|
|
}
|
|
};
|