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