sbt-idp/cope2n-api/fwd_api/api_router.py

22 lines
782 B
Python
Raw Permalink Normal View History

2023-11-30 11:19:06 +00:00
from django.conf import settings
from rest_framework.routers import DefaultRouter, SimpleRouter
from fwd_api.api.ctel_view import CtelViewSet
2024-02-22 02:42:27 +00:00
from fwd_api.api.accuracy_view import AccuracyViewSet
2023-11-30 11:19:06 +00:00
from fwd_api.api.ctel_user_view import CtelUserViewSet
from fwd_api.api.ctel_template_view import CtelTemplateViewSet
2024-07-17 10:44:40 +00:00
from fwd_api.api.semi_auto_correction import SemiAutoCorrectionViewSet
2023-11-30 11:19:06 +00:00
if settings.DEBUG:
router = DefaultRouter()
else:
router = SimpleRouter()
2024-07-17 10:44:40 +00:00
router.register("automation", SemiAutoCorrectionViewSet, basename="SemiAutoAPI")
2023-11-30 11:19:06 +00:00
router.register("ctel", CtelViewSet, basename="CtelAPI")
router.register("ctel", CtelUserViewSet, basename="CtelUserAPI")
2024-01-05 07:18:16 +00:00
router.register("ctel", AccuracyViewSet, basename="AccuracyAPI")
2023-11-30 11:19:06 +00:00
app_name = "api"
urlpatterns = router.urls