Передаем на тест

This commit is contained in:
2026-01-27 16:32:08 +03:00
parent cc244c2d86
commit d3c3a80ed2
42 changed files with 2836 additions and 140 deletions

View File

@@ -78,10 +78,15 @@ frontend/
├── src/
│ ├── lib/
│ │ ├── auth/ # New: Frontend auth stores/logic
│ │ └── api/ # Update: Add auth headers to requests
│ │ └── api.js # Update: Add auth headers and export core methods
│ ├── services/
│ │ └── adminService.js # New: Service for admin API operations
│ ├── routes/
│ │ ├── login/ # New: Login page
│ │ └── admin/ # New: Admin dashboard (Users/Roles)
│ │ └── admin/
│ │ ├── users/ # New: User Management UI
│ │ ├── roles/ # New: Role Management UI
│ │ └── settings/ # New: ADFS Configuration UI
│ └── components/
│ └── auth/ # New: Auth components (ProtectedRoute, Login form)
```