feat: implement event submission flow with image upload and modal interface
This commit is contained in:
4
scratch/debug-enum.ts
Normal file
4
scratch/debug-enum.ts
Normal 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
3
scratch/debug-prisma.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import { prisma } from './lib/prisma';
|
||||
|
||||
console.log('Prisma models:', Object.keys(prisma).filter(k => !k.startsWith('_') && !k.startsWith('$')));
|
||||
Reference in New Issue
Block a user