11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
import { redirect } from "@sveltejs/kit";
|
|
const actions = {
|
|
default: async ({ locals }) => {
|
|
locals.pb.authStore.clear();
|
|
throw redirect(303, "/login");
|
|
}
|
|
};
|
|
export {
|
|
actions
|
|
};
|