funkwhale/api/funkwhale_api/moderation/urls.py

10 wiersze
270 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")
router.register(r"reports", views.ReportsViewSet, "reports")
2019-02-14 09:49:06 +00:00
urlpatterns = router.urls