summaryrefslogtreecommitdiff
path: root/lib/approval/handlers-registry.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/approval/handlers-registry.ts')
-rw-r--r--lib/approval/handlers-registry.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/approval/handlers-registry.ts b/lib/approval/handlers-registry.ts
index 1e8140e5..1db79974 100644
--- a/lib/approval/handlers-registry.ts
+++ b/lib/approval/handlers-registry.ts
@@ -30,7 +30,11 @@ export async function initializeApprovalHandlers() {
// const { createPurchaseOrderInternal } = await import('@/lib/purchase-order/handlers');
// registerActionHandler('purchase_order_request', createPurchaseOrderInternal);
- // 3. 계약 승인 핸들러
+ // 3. 정규업체 등록 핸들러
+ const { registerVendorInternal } = await import('@/lib/vendor-regular-registrations/handlers');
+ registerActionHandler('vendor_regular_registration', registerVendorInternal);
+
+ // 4. 계약 승인 핸들러
// const { approveContractInternal } = await import('@/lib/contract/handlers');
// registerActionHandler('contract_approval', approveContractInternal);