From 02cc4a759d388c9029d5faa0f6744e5b937ad0e8 Mon Sep 17 00:00:00 2001 From: rstubryan Date: Wed, 5 Nov 2025 08:43:10 +0700 Subject: [PATCH] feat(FE-Storyless): add approval workflows for project flocks and recordings --- src/config/constant.ts | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/src/config/constant.ts b/src/config/constant.ts index b5a12fb4..ff5ada89 100644 --- a/src/config/constant.ts +++ b/src/config/constant.ts @@ -225,3 +225,36 @@ export const RECORDING_FLAG_OPTIONS = [ { label: 'Ayam Culling', value: 'Culling' }, { label: 'Ayam Mati', value: 'Mati' }, ]; + +export const APPROVAL_WORKFLOWS = [ + { + key: 'PROJECT_FLOCKS', + steps: [ + { + step_number: 1, + step_name: 'Pengajuan', + }, + { + step_number: 2, + step_name: 'Aktif', + }, + ], + }, + { + key: 'RECORDINGS', + steps: [ + { + step_number: 1, + step_name: 'Grading-Telur', + }, + { + step_number: 2, + step_name: 'Pengajuan', + }, + { + step_number: 3, + step_name: 'Disetujui', + }, + ], + }, +];