style tweaks #8

Merged
Hare merged 8 commits from develop into master 2024-09-03 21:37:03 +09:00
Showing only changes of commit 0398b95c24 - Show all commits

View File

@ -7,17 +7,16 @@ import {
} from '$env/static/private'
import PG from '$lib/server/database';
import { getConnection } from '$lib/server/database/get_connection';
// import { building } from '$app/environment';
import init from '$lib/server/database/init_db';
export const POST: RequestHandler = async ({ url }) => {
export const POST: RequestHandler = async ({ url, locals }) => {
const token = url.searchParams.get('token');
console.log(token);
if (token !== TOKEN) {
return error(401, 'Unauthorized');
}
await init(await PG(getConnection()));
await init(await PG(locals.db));
return new Response(String(token));
};