2022-03-07 00:20:03 +01:00

6 lines
148 B
JavaScript

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