feat: Add Stammdaten page for admin to manage own profile

- Add AdminProfilePage component for admin to edit own data
- Add 'Stammdaten' menu item in admin navigation
- Add route /admin/stammdaten for the new page
- Use existing POST /api/portal/users endpoint to save changes
- Update session context after successful save
This commit is contained in:
2026-03-18 09:09:57 +01:00
parent 49b1a3b363
commit 775b09ebeb
4 changed files with 299 additions and 0 deletions

View File

@@ -105,3 +105,8 @@ Kundenregistrierung:
- `cd backend && mvn test`
- `cd frontend && npm run build`
## Docker
docker buildx build --platform linux/amd64 -t gitea.appcreation.de/sven/muh:0.8.0 --push .
docker run -d --name muh --network br0 --ip 192.168.180.26 --restart unless-stopped -e MUH_MONGODB_URL=mongodb://192.168.180.25:27017/muh -e MUH_TOKEN_SECRET=local-dev-muh-token-secret-2026-03-13 -e MUH_TOKEN_VALIDITY_HOURS=12 -e MUH_ALLOWED_ORIGINS=https://muh.appcreation.de gitea.appcreation.de/sven/muh:0.8.0