Files
ihrm/geofencing/urls.py

12 lines
411 B
Python
Raw Normal View History

from django.urls import path
2025-04-30 14:55:35 +05:30
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"),
]