Files
timemaster/TEST_USERS.md
T
sysops 1fedd683e0 Initial commit – TimeMaster Zeiterfassung & HR-Tool
Stand: agent-06 (Audit-Log), agent-05 (Krankmeldung), agent-07 Phase 1 (Personalnummer),
Busylight-Pull-Integration, TOTP/2FA, Abwesenheiten, Zeiterfassung, Kiosk-Grundgerüst.
Migrations 0001–0023 deployed auf 192.168.1.137 + .164.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-23 20:03:27 +02:00

30 lines
1.2 KiB
Markdown

# Test-Benutzer
Alle Test-User sind in der Firma **VSB Magdeburg** angelegt.
Passwort für alle: `Test1234!`
| E-Mail | Rolle | Name |
|---------------------------|----------------|---------------|
| super.admin@tm-test.de | SUPER_ADMIN | Super Admin |
| firma.admin@tm-test.de | COMPANY_ADMIN | Firma Admin |
| hannah.hr@tm-test.de | HR | Hannah HR |
| max.manager@tm-test.de | MANAGER | Max Manager |
| emil.employee@tm-test.de | EMPLOYEE | Emil Employee |
## Produktiv-User
| E-Mail | Rolle | Name |
|-----------------------|----------------|------------------|
| patrick@perlbach24.de | COMPANY_ADMIN | Patrick Perlbach |
| bundyxl@gmx.de | EMPLOYEE | Patrick Test |
## Neu anlegen (SQL)
```sql
-- Passwort-Hash für 'Test1234!' erzeugen:
-- /opt/timemaster/backend/venv/bin/python3 -c "import bcrypt; print(bcrypt.hashpw(b'Test1234!', bcrypt.gensalt(rounds=12)).decode())"
INSERT INTO users (id, company_id, email, first_name, last_name, role, password_hash, is_active, auth_provider)
VALUES (gen_random_uuid(), '<company_id>', '<email>', '<first>', '<last>', '<role>', '<hash>', true, 'local');
```