coyotte508's picture
coyotte508 HF staff
πŸ›‚ Support authentication
bd9595b
raw
history blame
221 Bytes
import { redirect } from '@sveltejs/kit';
import type { Actions } from './$types';
export const actions: Actions = {
default: async (event) => {
throw redirect(303, event.request.headers.get('referer') ?? '/');
}
};