This commit is contained in:
2026-04-05 03:33:23 +03:30
parent 32dbbed1af
commit df15d03d7c
7 changed files with 492 additions and 28 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
from django.urls import path
from .views import SensorExternalAPIView
from .views import SensorExternalAPIView, SensorExternalRequestLogListAPIView
urlpatterns = [
path("", SensorExternalAPIView.as_view(), name="sensor-external-api"),
path("logs/", SensorExternalRequestLogListAPIView.as_view(), name="sensor-external-api-log-list"),
]