This repository has been archived on 2022-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
userausfall/userausfall/rest_api/urls.py

13 lines
313 B
Python
Raw Normal View History

from rest_framework import routers
2021-08-03 12:38:34 +02:00
from userausfall.rest_api.views import UserViewSet
router = routers.DefaultRouter(trailing_slash=True)
2021-10-21 09:58:18 +02:00
router.register(r"users", UserViewSet, basename="user")
2021-05-21 11:06:33 +02:00
urlpatterns = [
2021-08-03 12:38:34 +02:00
# path("confirm/confidant/", ConfidantConfirmationView.as_view())
2021-05-21 11:06:33 +02:00
]
urlpatterns += router.urls