funkwhale/api/funkwhale_api/moderation/urls.py
2019-02-14 10:49:06 +01:00

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