2019-10-10 13:52:55 +11:00

7 lines
144 B
JavaScript

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