Finish implementing webhook delivery

This commit is contained in:
2023-01-15 23:02:13 +00:00
parent 2dd9efcc6f
commit 75603570ff
7 changed files with 144 additions and 31 deletions

View File

@@ -103,6 +103,7 @@ class NotificationRuleForm(RestrictedFormMixin, ModelForm):
"data",
"interval",
"window",
"amount",
"priority",
"topic",
"url",
@@ -119,6 +120,7 @@ class NotificationRuleForm(RestrictedFormMixin, ModelForm):
"data": "The notification rule definition.",
"interval": "How often to run the search. On demand evaluates messages as they are received, without running a scheduled search. The remaining options schedule a search of the database with the window below.",
"window": "Time window to search: 1d, 1h, 1m, 1s, etc.",
"amount": "Amount of matches to be returned for scheduled queries. Cannot be used with on-demand queries.",
}
def clean(self):