From 3ac148d01cbec176ebf8104c43be35f29a9253fe Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 2 Feb 2021 19:18:51 +0100 Subject: [PATCH] events: only title for slack webhook --- authentik/events/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/authentik/events/models.py b/authentik/events/models.py index 3730aae92..4e7d933c9 100644 --- a/authentik/events/models.py +++ b/authentik/events/models.py @@ -254,7 +254,6 @@ class NotificationTransport(models.Model): } if notification.event: body["attachments"][0]["title"] = notification.event.action - body["attachments"][0]["text"] = notification.event.action try: response = post(self.webhook_url, json=body) response.raise_for_status()