mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-28 13:28:18 +00:00
14 lines
335 B
Python
14 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
|