forked from erp-dev/erp
10 lines
352 B
Python
10 lines
352 B
Python
from django.urls import path
|
|
|
|
from api_v2.views import QuickCreateEmployeeUserView, PrintingJobByCustomerView
|
|
|
|
urlpatterns = [
|
|
path('users/quick-create/', QuickCreateEmployeeUserView.as_view(), name='api_v2_user_quick_create'),
|
|
path('printing-jobs/by-customer/', PrintingJobByCustomerView.as_view(), name='api_v2_printing_job_by_customer'),
|
|
]
|
|
|