forked from erp-dev/erp
9 lines
208 B
Python
9 lines
208 B
Python
from django.urls import path
|
|
|
|
from api_v2.views import QuickCreateEmployeeUserView
|
|
|
|
urlpatterns = [
|
|
path('users/quick-create/', QuickCreateEmployeeUserView.as_view(), name='api_v2_user_quick_create'),
|
|
]
|
|
|