funkwhale/api/funkwhale_api/moderation/urls.py

9 wiersze
209 B
Python
Czysty Zwykły widok Historia

from funkwhale_api.common import routers
2019-02-14 09:49:06 +00:00
from . import views
router = routers.OptionalSlashRouter()
2019-02-14 09:49:06 +00:00
router.register(r"content-filters", views.UserFilterViewSet, "content-filters")
urlpatterns = router.urls