funkwhale/api/funkwhale_api/users/api_urls.py

9 wiersze
170 B
Python
Czysty Zwykły widok Historia

from rest_framework import routers
2018-06-10 08:55:16 +00:00
from . import views
router = routers.SimpleRouter()
2018-06-09 13:36:16 +00:00
router.register(r"users", views.UserViewSet, "users")
urlpatterns = router.urls