9 lines
217 B
Plaintext
Raw Normal View History

2019-09-12 07:14:16 +10:00
export default function() {
this.route("patrons", function() {
2019-10-25 08:18:16 +11:00
this.route("subscribe", function() {
this.route("product", { path: ":product_id" })
});
2019-09-11 17:38:55 +10:00
this.route("show", { path: ":pid" });
});
2019-09-11 17:13:12 +10:00
}