Fix: Multi-user data isolation and Legacy migration logic

This commit is contained in:
ren
2026-01-29 15:03:07 +01:00
parent 020218275f
commit e5c9de2df5
5 changed files with 98 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
import { NextResponse } from 'next/server';
import { destroySession } from '@/lib/auth';
export async function POST() {
destroySession();
return NextResponse.json({ success: true });
}