2019-09-11 17:14:16 -04:00
|
|
|
export default function() {
|
|
|
|
this.route("patrons", function() {
|
2019-11-04 00:37:21 -05:00
|
|
|
this.route("subscribe", function() {
|
|
|
|
this.route("show", { path: "/:subscription-id" });
|
|
|
|
});
|
2019-09-11 03:38:55 -04:00
|
|
|
});
|
2019-09-11 03:13:12 -04:00
|
|
|
}
|