feat: Controllo accessi RFID completo con gestione sessioni
- Aggiunto supporto multi-pattern RFID (US/IT layout) - Implementata invalidazione sessioni al restart del server - Schermata "badge non trovato" con countdown 30s - Notifica quando badge validatore passato senza utente - Database aggiornato con badge reali di test - Layout ottimizzato per tablet orizzontale - Banner NumLock per desktop - Toggle visibilità password - Carosello benvenuto multilingua (10 lingue) - Pagina debug RFID (/debug)
This commit is contained in:
21
backend-mock/schemas/__init__.py
Normal file
21
backend-mock/schemas/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""
|
||||
Focolari Voting System - Schemas Package
|
||||
"""
|
||||
|
||||
from .models import (
|
||||
LoginRequest,
|
||||
EntryRequest,
|
||||
UserResponse,
|
||||
RoomInfoResponse,
|
||||
LoginResponse,
|
||||
EntryResponse,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"LoginRequest",
|
||||
"EntryRequest",
|
||||
"UserResponse",
|
||||
"RoomInfoResponse",
|
||||
"LoginResponse",
|
||||
"EntryResponse",
|
||||
]
|
||||
Reference in New Issue
Block a user