mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
|
|
import type { RequestHandler } from '@sveltejs/kit';
|
||
|
|
|
||
|
|
export const post: RequestHandler = async ({ request }) => {
|
||
|
|
return {
|
||
|
|
headers: {
|
||
|
|
'Set-Cookie': 'session=deleted; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT',
|
||
|
|
},
|
||
|
|
body: {
|
||
|
|
ok: true,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
};
|