- 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)
22 lines
329 B
Python
22 lines
329 B
Python
"""
|
|
Focolari Voting System - Schemas Package
|
|
"""
|
|
|
|
from .models import (
|
|
LoginRequest,
|
|
EntryRequest,
|
|
UserResponse,
|
|
RoomInfoResponse,
|
|
LoginResponse,
|
|
EntryResponse,
|
|
)
|
|
|
|
__all__ = [
|
|
"LoginRequest",
|
|
"EntryRequest",
|
|
"UserResponse",
|
|
"RoomInfoResponse",
|
|
"LoginResponse",
|
|
"EntryResponse",
|
|
]
|