mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 01:19:16 +02:00
Added remote library scanning logic end endpoint
This commit is contained in:
parent
836e813955
commit
097707dec4
8 changed files with 243 additions and 6 deletions
11
api/funkwhale_api/federation/api_urls.py
Normal file
11
api/funkwhale_api/federation/api_urls.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from rest_framework import routers
|
||||
|
||||
from . import views
|
||||
|
||||
router = routers.SimpleRouter()
|
||||
router.register(
|
||||
r'libraries',
|
||||
views.LibraryViewSet,
|
||||
'libraries')
|
||||
|
||||
urlpatterns = router.urls
|
Loading…
Add table
Add a link
Reference in a new issue