Remove hard-coded webhook_url from test_message

as pointed out by Slack's own bots
This commit is contained in:
Klaas van Schelven
2025-06-11 08:41:01 +02:00
parent b53b1c6ce2
commit f84af74a7c
2 changed files with 5 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ def slack_backend_send_test_message(webhook_url, project_name, display_name):
]}
result = requests.post(
"https://hooks.slack.com/services/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",
webhook_url,
data=json.dumps(data),
headers={"Content-Type": "application/json"},
)