feat(frontend): Account-Einstellungen (Stammdaten, Kontaktdaten, Delegationen) #70
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#70
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
Account-Seite zum Anzeigen und Bearbeiten der eigenen Stammdaten, Kontaktdaten und Delegationen.
Endpunkte (via BFF-Proxy)
load-Funktion (+page.server.ts)
s export async function load({ fetch, locals }) { const personId = locals.user?.personId; if (!personId) return { person: null, contacts: null }; const [person, contacts] = await Promise.all([ fetch(/api/v1/persons/).then(r => r.ok ? r.json() : null), fetch(/api/v1/persons//contacts).then(r => r.ok ? r.json() : null), ]); return { person, contacts }; }Formular-Actions
Seite (+page.svelte)
Nutzt Komponenten aus #67
Tests
Akzeptanzkriterien