Files
familienarchiv/frontend/src/lib/user
Marcel 62c807b7fe
All checks were successful
CI / Unit & Component Tests (push) Successful in 3m11s
CI / OCR Service Tests (push) Successful in 17s
CI / Backend Unit Tests (push) Successful in 4m22s
CI / fail2ban Regex (push) Successful in 39s
CI / Compose Bucket Idempotency (push) Successful in 56s
fix(invites): resolve svelte-check warnings in UserGroupsSection and page.server.test
Use untrack() for intentional one-time prop seed in UserGroupsSection.
Add explicit LoadData type alias in page.server.test to avoid void|Record<string,any> union.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-14 19:26:53 +02:00
..

user (frontend)

UI for account management: profile editing, password change, and permission group management in the admin panel.

What this domain owns

Components: UserProfileSection.svelte, UserPasswordSection.svelte, UserGroupsSection.svelte.

What this domain does NOT own

  • Person records — historical family members are entirely separate from login accounts. A user editing their profile is an AppUser; the historical persons in documents are Person entities. They are never linked.
  • User list or admin creation UI — those live in the /admin route, which assembles views from multiple domains.

Key components

Component Used in Notes
UserProfileSection.svelte /settings or profile page Display name, email editing
UserPasswordSection.svelte /settings Password change form
UserGroupsSection.svelte /admin Per-user permission group assignment

Cross-domain imports

  • shared/primitives/ — generic UI primitives only

Backend counterpart

backend/src/main/java/org/raddatz/familienarchiv/user/README.md