6 lines
124 B
JavaScript
6 lines
124 B
JavaScript
export default function () {
|
|
this.route("s", function () {
|
|
this.route("show", { path: "/:subscription-id" });
|
|
});
|
|
}
|