2019-11-04 16:37:21 +11:00

8 lines
179 B
JavaScript

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