mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 17:29:17 +02:00
Fix #1184: restored users/users/ alias until Funkwhale 1.1
This commit is contained in:
parent
c6b36913bd
commit
2104d6f155
1 changed files with 5 additions and 0 deletions
|
@ -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"),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue