Refactor backend services and routers

- Reorganized dashboard router with improved structure
- Enhanced ban_service with better separation of concerns
- Updated history service with cleaner logic
- Improved constants and configuration handling
- Updated documentation of completed tasks

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-04-23 16:06:10 +02:00
parent fd685e8211
commit fdfd24508f
6 changed files with 20 additions and 48 deletions

View File

@@ -66,7 +66,7 @@ TIME_RANGE_HOURS: Final[dict[str, int]] = {
# Pagination
# ---------------------------------------------------------------------------
DEFAULT_PAGE_SIZE: Final[int] = 50
DEFAULT_PAGE_SIZE: Final[int] = 100
MAX_PAGE_SIZE: Final[int] = 500
# ---------------------------------------------------------------------------