add is_staff for user login api

This commit is contained in:
2025-09-02 11:40:17 +09:00
parent 45a29c7b18
commit 70acda8167
2 changed files with 8 additions and 7 deletions

View File

@ -82,9 +82,9 @@ urlpatterns = router.urls
urlpatterns += [
path('inperf/', LocationsInPerf, name="location_perf"),
path('insubperf', LocationsInSubPerf, name='location_subperf'),
path('inbound', LocationInBound, name='location_bound'),
path('inbound2', LocationInBound2, name='location_bound'),
path('insubperf/', LocationsInSubPerf, name='location_subperf'),
path('inbound/', LocationInBound, name='location_bound'),
path('inbound2/', LocationInBound2, name='location_bound2'),
path('location-checkin/', views.LocationCheckinView.as_view(), name='location_checkin'),
path('location-checkin-test/', views.location_checkin_test, name='location_checkin_test'),
path('customarea/', CustomAreaLocations, name='custom_area_location'),