Skip to content
Snippets Groups Projects
Commit 2104d6f1 authored by Agate's avatar Agate :speech_balloon:
Browse files

Fix #1184: restored users/users/ alias until Funkwhale 1.1

parent c6b36913
No related branches found
No related tags found
No related merge requests found
...@@ -74,6 +74,11 @@ v1_patterns += [ ...@@ -74,6 +74,11 @@ v1_patterns += [
include(("funkwhale_api.history.urls", "history"), namespace="history"), include(("funkwhale_api.history.urls", "history"), namespace="history"),
), ),
url(r"^", include(("funkwhale_api.users.api_urls", "users"), namespace="users"),), url(r"^", include(("funkwhale_api.users.api_urls", "users"), namespace="users"),),
# XXX: remove if Funkwhale 1.1
url(
r"^users/",
include(("funkwhale_api.users.api_urls", "users"), namespace="users-nested"),
),
url( url(
r"^oauth/", r"^oauth/",
include(("funkwhale_api.users.oauth.urls", "oauth"), namespace="oauth"), include(("funkwhale_api.users.oauth.urls", "oauth"), namespace="oauth"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment