|
|
@@ -32,6 +32,8 @@ def _send(send_json):
|
|
|
webhooks = json.loads(webhooks_json)
|
|
|
for webhook_key in webhooks:
|
|
|
webhook = webhooks[webhook_key]
|
|
|
+ if 'Alert: 10 mins' in send_json['content'] and webhook_key == 'Unrelenting':
|
|
|
+ send_json['content'] = '@here ' + send_json['content']
|
|
|
url = base_url+webhook
|
|
|
response = requests.post(url, json=send_json)
|
|
|
if response.status_code in [200, 204]:
|