mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 01:49:56 +02:00
Fix #1038: Federated reports
This commit is contained in:
parent
40720328d7
commit
d9afed5067
34 changed files with 985 additions and 76 deletions
|
@ -1,6 +1,7 @@
|
|||
from django import urls
|
||||
|
||||
from funkwhale_api.audio import spa_views as audio_spa_views
|
||||
from funkwhale_api.federation import spa_views as federation_spa_views
|
||||
from funkwhale_api.music import spa_views
|
||||
|
||||
|
||||
|
@ -36,4 +37,9 @@ urlpatterns = [
|
|||
audio_spa_views.channel_detail_username,
|
||||
name="channel_detail",
|
||||
),
|
||||
urls.re_path(
|
||||
r"^@(?P<username>[^/]+)/?$",
|
||||
federation_spa_views.actor_detail_username,
|
||||
name="actor_detail",
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue