feat: reduce demo login to Verwaltung + Bürosuche only

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Sutter
2026-05-19 20:35:55 +02:00
parent d15a13e485
commit a36a827564
-4
View File
@@ -17,12 +17,8 @@ import { useSessionStore } from '../../stores/sessionStore'
import { UserRole } from '../../domain/enums'
const DEMO_ROLES: { role: UserRole; label: string; description: string }[] = [
{ role: UserRole.ORGANIZATION_ADMIN, label: 'Org Admin', description: 'Vollzugriff Supply + Demand + Ops' },
{ role: UserRole.PROPERTY_MANAGER, label: 'Verwaltung', description: 'Portfolio verwalten + Markt durchsuchen' },
{ role: UserRole.DEMAND_USER, label: 'Bürosuche', description: 'Nur Marktsuche — kein Portfolio' },
{ role: UserRole.REVIEWER, label: 'Reviewer', description: 'Operations Workspace' },
{ role: UserRole.OWNER_VIEWER, label: 'Eigentümer', description: 'Supply (eingeschränkt)' },
{ role: UserRole.SUPER_ADMIN, label: 'Super Admin', description: 'Plattform-Administrator' },
]
export default function LoginScreen() {