From 2bab4ebfe86711849cf7b889275593f71c3bc144 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 28 Dec 2020 15:06:25 +0100 Subject: [PATCH] core: fix library url pattern not matching SPA --- authentik/core/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/core/urls.py b/authentik/core/urls.py index 7a85fc585..9383191ab 100644 --- a/authentik/core/urls.py +++ b/authentik/core/urls.py @@ -25,7 +25,7 @@ urlpatterns = [ name="user-tokens-delete", ), # Libray - path("library/", library.LibraryView.as_view(), name="overview"), + path("library", library.LibraryView.as_view(), name="overview"), # Impersonation path( "-/impersonation//",