From bce58c585d89ee15a2ba338a8294e6a594c8c43c Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 30 Oct 2025 10:47:51 +0700 Subject: [PATCH] feat(FE-91): create approval-line config file --- src/config/approval-line.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/config/approval-line.ts diff --git a/src/config/approval-line.ts b/src/config/approval-line.ts new file mode 100644 index 00000000..0a02d1f1 --- /dev/null +++ b/src/config/approval-line.ts @@ -0,0 +1,12 @@ +import { ApprovalLine } from '@/types/config/constant'; + +export const PROJECT_FLOCK_APPROVAL_LINE: ApprovalLine = [ + { + step_number: 1, + step_name: 'Pengajuan', + }, + { + step_number: 2, + step_name: 'Aktif', + }, +] as const;