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

9 lines
217 B
JavaScript

export default function() {
this.route("patrons", function() {
this.route("subscribe", function() {
this.route("product", { path: ":product_id" })
});
this.route("show", { path: ":pid" });
});
}