refactor(config): migrer le flux RSS vers l'endpoint commun

Co-authored-by: Codex <codex@antoineve.me>
This commit is contained in:
2026-09-13 11:52:37 +02:00
parent 93f66d6aca
commit 097a27fcf3
5 changed files with 66 additions and 13 deletions
+5 -1
View File
@@ -138,7 +138,11 @@ class PipelineRunner:
comparator = (
AgendaComparator(theoretical_provider) if theoretical_provider is not None else None
)
blog_client = BlogRSSClient(settings.blog.rss_url) if settings.blog.enabled else None
blog_client = (
BlogRSSClient(settings.blog.endpoint.url.get_secret_value())
if settings.blog.enabled
else None
)
blog_state = (
BlogRSSState(persistence_enabled=persistence_enabled) if settings.blog.enabled else None
)