changes to task scheduling and readability change on downloads view

This commit is contained in:
Bryan Van Deusen
2026-01-29 19:33:04 -05:00
parent 575e20f58c
commit fcccfb24ee
18 changed files with 527 additions and 72 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ class Source(Base, TimestampMixin):
platform: Mapped[str] = mapped_column(String(50), nullable=False, index=True)
url: Mapped[str] = mapped_column(Text, nullable=False)
enabled: Mapped[bool] = mapped_column(Boolean, default=True)
check_interval: Mapped[int] = mapped_column(Integer, default=3600) # seconds
check_interval: Mapped[int] = mapped_column(Integer, default=28800) # 8 hours in seconds
# Status tracking
last_check: Mapped[Optional[datetime]] = mapped_column(nullable=True)