From 83057308241ef5e562ceaf756803f23b4112a664 Mon Sep 17 00:00:00 2001 From: Akhil Meka Date: Wed, 27 Aug 2025 17:54:46 +0530 Subject: [PATCH] feat: add new stages to rts pipeline --- src/utils/pipeline.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/utils/pipeline.ts b/src/utils/pipeline.ts index f00d4ac..ca2fad9 100644 --- a/src/utils/pipeline.ts +++ b/src/utils/pipeline.ts @@ -105,6 +105,12 @@ export const permitPipeline: Pipeline = [ ]; export const rtsPipeline: Pipeline = [ + { + name: "Upload Pending", + date: null, + description: "", + comment: "", + }, { name: "Received", date: null, @@ -112,7 +118,13 @@ export const rtsPipeline: Pipeline = [ comment: "", }, { - name: "In Review", + name: "Review", + date: null, + description: "", + comment: "", + }, + { + name: "In Progress", date: null, description: "", comment: "",