mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-19 18:04:45 +00:00
8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
export default function() {
|
|
this.route("patrons", function() {
|
|
this.route("subscribe", function() {
|
|
this.route("show", { path: "/:subscription-id" });
|
|
});
|
|
});
|
|
}
|