mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
15 lines
335 B
Python
15 lines
335 B
Python
from rest_framework.routers import DefaultRouter, SimpleRouter
|
|
from django.conf import settings
|
|
from {{ cookiecutter.project_slug }}.users.api.views import UserViewSet
|
|
|
|
if settings.DEBUG:
|
|
router = DefaultRouter()
|
|
else:
|
|
router = SimpleRouter()
|
|
|
|
router.register("users", UserViewSet)
|
|
|
|
|
|
app_name = "api"
|
|
urlpatterns = router.urls
|