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

8 lines
173 B
JavaScript

export default function() {
this.route("s", function() {
this.route("subscribe", function() {
this.route("show", { path: "/:subscription-id" });
});
});
}