feat: enable Fischerei, Sitzungsprotokolle, Verbandsverwaltung modules
Some checks failed
Workflow / ʦ TypeScript (push) Failing after 5m44s
Workflow / ⚫️ Test (push) Has been skipped

- Enable all 3 modules via NEXT_PUBLIC_ENABLE_* build args + runtime env
- Fix empty-string-to-null for date/optional columns in all module APIs:
  fischerei (24 fixes), verbandsverwaltung (15 fixes), sitzungsprotokolle (2 fixes)
- CACHE_BUST=12 for full rebuild with new feature flags
This commit is contained in:
Zaid Marzguioui
2026-04-01 13:23:57 +02:00
parent 8d8f4e94ee
commit 5294cfab61
5 changed files with 51 additions and 42 deletions

View File

@@ -79,9 +79,9 @@ export function createMeetingsApi(client: SupabaseClient<Database>) {
.insert({
account_id: input.accountId,
title: input.title,
meeting_date: input.meetingDate,
meeting_date: input.meetingDate || null,
meeting_type: input.meetingType,
location: input.location,
location: input.location || null,
attendees: input.attendees,
remarks: input.remarks,
is_published: input.isPublished,