fix(auth): corriger les retours de revue du PIN Pronote

This commit is contained in:
2026-09-12 22:20:09 +02:00
31 changed files with 2422 additions and 634 deletions
+2 -2
View File
@@ -306,8 +306,8 @@ class AppSettings(BaseSettings):
school_holidays_path: str | None = None
theoretical_week_anchor_date: date | None = None
theoretical_week_anchor_type: Literal["even", "odd"] | None = None
sync_past_days: int = 7
sync_future_days: int = 30
sync_past_days: int = Field(default=7, ge=0)
sync_future_days: int = Field(default=30, ge=0)
class Settings(BaseSettings):