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 12:44:03 +02:00
committed by OpenCode
parent 97a14d9543
commit c02f46245f
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
)