From 95cd7ec904aa87cebaff4e1409988ff309e5ab3c Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Thu, 4 Jul 2024 17:00:10 +0200 Subject: [PATCH] Update authentik/outposts/api/outposts.py Co-authored-by: Jens L. Signed-off-by: Marc 'risson' Schmitt --- authentik/outposts/api/outposts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/outposts/api/outposts.py b/authentik/outposts/api/outposts.py index 2a3b098207..7c435bdef8 100644 --- a/authentik/outposts/api/outposts.py +++ b/authentik/outposts/api/outposts.py @@ -217,4 +217,4 @@ class OutpostViewSet(UsedByMixin, ModelViewSet): """Force an outpost to refresh its configuration. Will also clear its cache.""" outpost: Outpost = self.get_object() outpost_send_update(outpost) - return Response({}, status=200) + return Response(status=204)