Initial commit

This commit is contained in:
2026-02-03 10:38:46 +01:00
commit eb304f4b14
144 changed files with 22605 additions and 0 deletions

12
upload/src/types/event.ts Normal file
View File

@@ -0,0 +1,12 @@
export interface PublicEvent {
name: string
description: string | null
slug: string
is_active: boolean
upload_start_at: string | null
upload_end_at: string | null
max_file_size_mb: number
allowed_extensions: string[]
require_password: boolean
has_password: boolean
}