funquail/api/funkwhale_api/users/api_urls.py

8 lines
183 B
Python
Raw Normal View History

from funkwhale_api.common import routers
2018-06-10 10:55:16 +02:00
from . import views
router = routers.OptionalSlashRouter()
2018-06-09 15:36:16 +02:00
router.register(r"users", views.UserViewSet, "users")
urlpatterns = router.urls