10 lines
271 B
Python
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()),
|
||
|
|
]
|