feat: add support for multiple RSS feeds

This commit is contained in:
aserper
2025-12-13 00:27:36 -05:00
parent a5d5ac6b7d
commit 082a0ac35c
5 changed files with 174 additions and 33 deletions

View File

@@ -17,7 +17,7 @@ class TestRSSFeedIntegration(unittest.TestCase):
"client_secret": "test_client_secret",
"access_token": "test_access_token",
"instance_url": "https://mastodon.test",
"feed_url": "https://example.com/feed.xml",
"feed_urls": ["https://example.com/feed.xml"],
"toot_visibility": "public",
"check_interval": 1,
"state_file": tempfile.mktemp(),
@@ -187,7 +187,7 @@ class TestMastodonAPIIntegration(unittest.TestCase):
"client_secret": "test_client_secret",
"access_token": "test_access_token",
"instance_url": "https://mastodon.test",
"feed_url": "https://example.com/feed.xml",
"feed_urls": ["https://example.com/feed.xml"],
"toot_visibility": "public",
"check_interval": 1,
"state_file": tempfile.mktemp(),