feat: implement event submission flow with image upload and modal interface

This commit is contained in:
2026-05-10 21:47:28 +02:00
parent 7db35361d9
commit 197594f84f
31 changed files with 1481 additions and 75 deletions

4
scratch/debug-enum.ts Normal file
View File

@@ -0,0 +1,4 @@
import { ContentStatus } from '@prisma/client';
console.log('Available ContentStatus:', Object.values(ContentStatus));
console.log('PENDING value:', ContentStatus.PENDING);

3
scratch/debug-prisma.ts Normal file
View File

@@ -0,0 +1,3 @@
import { prisma } from './lib/prisma';
console.log('Prisma models:', Object.keys(prisma).filter(k => !k.startsWith('_') && !k.startsWith('$')));