mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-10 21:44:53 +00:00
9 lines
141 B
JavaScript
9 lines
141 B
JavaScript
export default {
|
|
resource: "user",
|
|
path: "users/:username",
|
|
map() {
|
|
this.route("billing");
|
|
this.route("subscriptions");
|
|
}
|
|
};
|