core: fix library url pattern not matching SPA
This commit is contained in:
parent
a8647caca9
commit
2bab4ebfe8
|
@ -25,7 +25,7 @@ urlpatterns = [
|
||||||
name="user-tokens-delete",
|
name="user-tokens-delete",
|
||||||
),
|
),
|
||||||
# Libray
|
# Libray
|
||||||
path("library/", library.LibraryView.as_view(), name="overview"),
|
path("library", library.LibraryView.as_view(), name="overview"),
|
||||||
# Impersonation
|
# Impersonation
|
||||||
path(
|
path(
|
||||||
"-/impersonation/<int:user_id>/",
|
"-/impersonation/<int:user_id>/",
|
||||||
|
|
Reference in New Issue