Files
tatort/src/routes/api/list/+server.ts
Chi Cong Tran e935adf8df
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good
hotfix: viewer cannot access Vorgang with correct PIN, temp remove check if logged-in
2025-09-04 12:44:33 +02:00

12 lines
246 B
TypeScript

import { getVorgaenge } from '$lib/server/vorgangService';
import { json } from '@sveltejs/kit';
export async function GET({ locals }) {
const vorgaenge = getVorgaenge();
return new Response(JSON.stringify(vorgaenge), {
status: 200
});
}