added auth
This commit is contained in:
@ -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));
|
||||
}
|
||||
Reference in New Issue
Block a user