diff options
| author | Fuwn <[email protected]> | 2023-12-03 16:01:08 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-03 16:01:08 -0800 |
| commit | 5e2a23e1e311718dfc781e601090daa38656d941 (patch) | |
| tree | 981fffeb91d56aa8cc23243369ca2cca1dc59f7d /src | |
| parent | feat(birthdays): birthday selector (diff) | |
| download | due.moe-5e2a23e1e311718dfc781e601090daa38656d941.tar.xz due.moe-5e2a23e1e311718dfc781e601090daa38656d941.zip | |
feat(routes): birthdays shortcut
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/birthdays/+server.ts | 3 |
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); +}; |