Files
ihrm/geofencing/urls.py
2025-05-09 15:07:19 +05:30

12 lines
411 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()),
path("location-check/", GeoFencingEmployeeLocationCheckAPIView.as_view()),
path("config/", geo_location_config, name="geo-config"),
]