mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 07:39:16 +02:00
8 lines
209 B
Python
8 lines
209 B
Python
from funkwhale_api.common import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.OptionalSlashRouter()
|
|
router.register(r"content-filters", views.UserFilterViewSet, "content-filters")
|
|
|
|
urlpatterns = router.urls
|