mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
* Refactor main index page * Refactor admin page * Refactor Auth endpoint * Refactor directory to prep for monorepo * Fixed refactoring path * Resolved file path in vite * Refactor photo index page * Refactor thumbnail * Fixed test * Refactor Video Viewer component * Refactor download file * Refactor navigation bar * Refactor upload file check * Simplify Upload Asset signature * PR feedback
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
import type { RequestHandler } from '@sveltejs/kit';
|
|
|
|
export const post: RequestHandler = async () => {
|
|
return {
|
|
headers: {
|
|
'Set-Cookie': 'session=deleted; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT',
|
|
},
|
|
body: {
|
|
ok: true,
|
|
},
|
|
};
|
|
};
|