added auth

This commit is contained in:
2025-07-27 12:12:22 -04:00
parent 1d2e90a183
commit 82dbefa565
36 changed files with 729 additions and 95 deletions

View File

@ -0,0 +1,6 @@
import { getUnallocatedTransactions } from '$lib/db.js';
export async function GET({ url }) {
const transacations = await getUnallocatedTransactions();
return new Response(JSON.stringify(transacations));
}