feat: add nightly source record exports
All checks were successful
All checks were successful
This commit is contained in:
12
src/core/api_v2_urls.py
Normal file
12
src/core/api_v2_urls.py
Normal file
@@ -0,0 +1,12 @@
|
||||
"""API v2 routes shared with the Mostovik administrative frontend contract."""
|
||||
|
||||
from django.urls import include, path
|
||||
|
||||
app_name = "api_v2"
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
"organization-source-records/",
|
||||
include("apps.external_data.export_urls"),
|
||||
),
|
||||
]
|
||||
@@ -40,6 +40,7 @@ urlpatterns = [
|
||||
path("admin/", admin.site.urls),
|
||||
path("health/", include("apps.core.urls")),
|
||||
path("api/v1/", include("core.api_v1_urls", namespace="api_v1")),
|
||||
path("api/v2/", include("core.api_v2_urls", namespace="api_v2")),
|
||||
path("auth/", include("rest_framework.urls")),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user