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