funkwhale/api/funkwhale_api/moderation/urls.py

9 wiersze
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