mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 17:19:16 +02:00
8 lines
196 B
Python
8 lines
196 B
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.SimpleRouter()
|
|
router.register(r"content-filters", views.UserFilterViewSet, "content-filters")
|
|
|
|
urlpatterns = router.urls
|