From c6fb707a9fd2c733f3441a9e8327548ce9737df0 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Wed, 12 Nov 2025 13:34:49 +0700 Subject: [PATCH] chore(FE-149): add TRANSFER_TO_LAYING_APPROVAL_LINE constant --- src/config/approval-line.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/config/approval-line.ts b/src/config/approval-line.ts index 0a02d1f1..9c24cfaa 100644 --- a/src/config/approval-line.ts +++ b/src/config/approval-line.ts @@ -10,3 +10,14 @@ export const PROJECT_FLOCK_APPROVAL_LINE: ApprovalLine = [ step_name: 'Aktif', }, ] as const; + +export const TRANSFER_TO_LAYING_APPROVAL_LINE: ApprovalLine = [ + { + step_number: 1, + step_name: 'Pengajuan', + }, + { + step_number: 2, + step_name: 'Disetujui', + }, +] as const;