2019-10-25 08:18:16 +11:00

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" });
});
}