6 lines
115 B
JavaScript
6 lines
115 B
JavaScript
export default function() {
|
|
this.route("patrons", function() {
|
|
this.route("show", { path: ":pid" });
|
|
});
|
|
}
|