mirror of
https://ghfast.top/https://github.com/discourse/discourse-cakeday.git
synced 2026-07-16 11:47:40 +08:00
17 lines
430 B
JavaScript
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");
|
|
});
|
|
});
|
|
}
|