Fix #1184: restored users/users/ alias until Funkwhale 1.1
This commit is contained in:
parent
c6b36913bd
commit
2104d6f155
|
@ -74,6 +74,11 @@ v1_patterns += [
|
|||
include(("funkwhale_api.history.urls", "history"), namespace="history"),
|
||||
),
|
||||
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(
|
||||
r"^oauth/",
|
||||
include(("funkwhale_api.users.oauth.urls", "oauth"), namespace="oauth"),
|
||||
|
|
Loading…
Reference in New Issue