Files
ihrm/geofencing/urls.py
2025-04-30 14:55:35 +05:30

10 lines
271 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path("setup/", GeoFencingSetupGetPostAPIView.as_view()),
path("setup/<int:pk>/", GeoFencingSetupPutDeleteAPIView.as_view()),
path("setup-check/", GeoFencingSetUpPermissionCheck.as_view()),
]