aboutsummaryrefslogtreecommitdiff
path: root/src/routes/birthdays/+server.ts
blob: fe94f3e5bc8abeb00c0d0cf913fd1fcd65960464 (plain) (blame)
1
2
3
4
5
6
7
export const GET = ({ url }) =>
	Response.redirect(
		`https://due.moe/tools?tool=birthdays${
			url.search.length > 0 ? url.search.replace('?', '') : ''
		}`,
		302
	);