2020-09-16 09:53:50 -05:00
|
|
|
export default function () {
|
2024-04-29 12:47:58 -06:00
|
|
|
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
|
|
|
}
|