diff options
Diffstat (limited to 'src/routes/birthdays')
| -rw-r--r-- | src/routes/birthdays/+server.ts | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/routes/birthdays/+server.ts b/src/routes/birthdays/+server.ts deleted file mode 100644 index e20d6c8a..00000000 --- a/src/routes/birthdays/+server.ts +++ /dev/null @@ -1,12 +0,0 @@ -import root from '$lib/Utility/root.js'; - -export const GET = ({ url }) => { - return Response.redirect( - root( - `/tools/birthdays${ - url.searchParams.toString().length > 0 ? `?${url.searchParams.toString()}` : '' - }` - ), - 307 - ); -}; |