13 lines
323 B
Python
13 lines
323 B
Python
from django.conf import settings
|
|
from rest_framework.routers import DefaultRouter
|
|
from rest_framework.routers import SimpleRouter
|
|
|
|
from lms.users.api.views import UserViewSet
|
|
|
|
router = DefaultRouter() if settings.DEBUG else SimpleRouter()
|
|
|
|
router.register("users", UserViewSet)
|
|
|
|
|
|
app_name = "api"
|
|
urlpatterns = router.urls
|