File size: 286 Bytes
faca43f
 
 
 
 
 
 
 
 
5528541
1
2
3
4
5
6
7
8
9
10
11
import { base } from "$app/paths";
import { authCondition } from "$lib/server/auth";
import { collections } from "$lib/server/database";
import { redirect } from "@sveltejs/kit";

export const actions = {
	delete: async function ({ locals }) {
		throw redirect(303, `${base}/`);
	},
};