feat(admin): implement CRUD for administrators with role management and tenant restrictions

This commit is contained in:
2026-09-04 10:28:33 -03:00
parent ac44e82454
commit 18f1217daa
10 changed files with 478 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ class ResetPasswordAttempt extends Model
public const REASON_STAFF_CREATED = 'staff_created';
public const REASON_ADMINISTRATOR_CREATED = 'administrator_created';
public const STATUS_PENDING = 'pending';
public const STATUS_VALIDATED = 'validated';