discourse-cakeday/assets/javascripts/discourse/discourse-cakeday-route-map.js
2023-11-29 23:04:31 +01:00

17 lines
430 B
JavaScript

export default function () {
this.route("cakeday", { resetNamespace: true }, function () {
this.route("birthdays", function () {
this.route("today");
this.route("tomorrow");
this.route("upcoming");
this.route("all");
});
this.route("anniversaries", function () {
this.route("today");
this.route("tomorrow");
this.route("upcoming");
this.route("all");
});
});
}