From da3222df07e2941bc21f0489f82fbb0676430e75 Mon Sep 17 00:00:00 2001 From: Jens L Date: Tue, 21 Mar 2023 00:20:48 +0100 Subject: [PATCH] core: fix websocket url path (#5019) Signed-off-by: Jens Langhammer --- authentik/core/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/core/apps.py b/authentik/core/apps.py index 9042069e6..072e59a9e 100644 --- a/authentik/core/apps.py +++ b/authentik/core/apps.py @@ -11,7 +11,7 @@ class AuthentikCoreConfig(ManagedAppConfig): label = "authentik_core" verbose_name = "authentik Core" mountpoint = "" - ws_mountpoint = "authentik.outposts.urls" + ws_mountpoint = "authentik.core.urls" default = True def reconcile_load_core_signals(self):