feat: add iCal calendar subscriptions
ci / gitleaks (push) Successful in 56s
ci / docker (push) Successful in 5m55s

This commit is contained in:
2026-09-20 16:37:43 +08:00
parent af52fe0cad
commit f3ad1eec03
25 changed files with 1108 additions and 41 deletions
+2
View File
@@ -30,6 +30,7 @@ from .auth import (
verify_password,
)
from .backup import router as backup_router
from .calendar_router import router as calendar_router
from .db import create_schema, get_db
from .models import (
AppState,
@@ -120,6 +121,7 @@ async def openapi(_: User = Depends(current_user)):
app.include_router(mvp_router)
app.include_router(backup_router)
app.include_router(calendar_router)
logger = logging.getLogger(__name__)
_login_attempts: dict[tuple[str, str], deque[float]] = defaultdict(deque)