aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-12-03 16:01:08 -0800
committerFuwn <[email protected]>2023-12-03 16:01:08 -0800
commit5e2a23e1e311718dfc781e601090daa38656d941 (patch)
tree981fffeb91d56aa8cc23243369ca2cca1dc59f7d /src
parentfeat(birthdays): birthday selector (diff)
downloaddue.moe-5e2a23e1e311718dfc781e601090daa38656d941.tar.xz
due.moe-5e2a23e1e311718dfc781e601090daa38656d941.zip
feat(routes): birthdays shortcut
Diffstat (limited to 'src')
-rw-r--r--src/routes/birthdays/+server.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/routes/birthdays/+server.ts b/src/routes/birthdays/+server.ts
new file mode 100644
index 00000000..bf7dcaea
--- /dev/null
+++ b/src/routes/birthdays/+server.ts
@@ -0,0 +1,3 @@
+export const GET = () => {
+ return Response.redirect('/tools?tool=todays_character_birthdays', 302);
+};