Added webhook support for sending Notification results (#139)

This commit is contained in:
Chris Caron
2023-10-15 16:21:13 -04:00
committed by GitHub
parent cd2135bb46
commit 6a8099d79e
11 changed files with 664 additions and 81 deletions

View File

@ -61,7 +61,8 @@ class AddTests(SimpleTestCase):
# However adding just 1 more character exceeds our limit and the save
# will fail
response = self.client.post(
'/add/{}'.format(key + 'x'), {'urls': 'mailto://user:pass@yahoo.ca'})
'/add/{}'.format(key + 'x'),
{'urls': 'mailto://user:pass@yahoo.ca'})
assert response.status_code == 404
@override_settings(APPRISE_CONFIG_LOCK=True)