Files

7 lines
209 B
JavaScript
Raw Permalink Normal View History

2020-09-16 09:53:50 -05:00
export default function () {
this.route("subscriptions", { path: "/s/subscriptions" });
2021-07-19 19:56:19 -05:00
this.route("subscribe", { path: "/s" }, function () {
2019-12-13 11:54:32 +11:00
this.route("show", { path: "/:subscription-id" });
2019-09-11 17:38:55 +10:00
});
2019-09-11 17:13:12 +10:00
}