mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-10 21:44:53 +00:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
export default function() {
|
|
this.route("patrons", function() {
|
|
this.route("subscribe");
|
|
this.route("show", { path: ":pid" });
|
|
});
|
|
}
|