feat(frontend): Event-Liste, Event-Detail und Event-Anlegen #71
Labels
No labels
component/backend
component/docs
component/e2e
component/frontend
component/infra
component/keycloak
prio/high
prio/low
prio/medium
type/bug
type/chore
type/feature
type/refactor
type/test
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
WompSchmiede/FamilienFeierPlaner#71
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Beschreibung
Vollstaendige Event-Verwaltung: Liste aller Events, Detailansicht mit Bearbeitung und Formular zum Anlegen neuer Events. Enthaelt auch die bisherigen Anforderungen aus #57 (Datumsvalidierung) und #58 (Navigation nach Anlage).
Endpunkte
Event-Liste (/app/events)
load-Funktion
s export async function load({ fetch }) { const res = await fetch('/api/v1/events'); return { events: res.ok ? await res.json() : [] }; }Seite
Event-Detail (/app/events/[eventId])
Event anlegen (/app/events/new)
Tests
Akzeptanzkriterien