2025-04-28 17:39:24 +05:30
|
|
|
from django.urls import path
|
|
|
|
|
|
2025-04-30 14:55:35 +05:30
|
|
|
from .views import *
|
2025-04-28 17:39:24 +05:30
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path("setup/", GeoFencingSetupGetPostAPIView.as_view()),
|
|
|
|
|
path("setup/<int:pk>/", GeoFencingSetupPutDeleteAPIView.as_view()),
|
|
|
|
|
path("setup-check/", GeoFencingSetUpPermissionCheck.as_view()),
|
2025-05-09 11:14:51 +05:30
|
|
|
path("location-check/", GeoFencingEmployeeLocationCheckAPIView.as_view()),
|
|
|
|
|
path("config/", geo_location_config, name="geo-config"),
|
2025-04-28 17:39:24 +05:30
|
|
|
]
|