From ce244f310e87ed1025f592cd550df067904a20c4 Mon Sep 17 00:00:00 2001
From: Shishir Suman <74050813+shishirsuman092@users.noreply.github.com>
Date: Fri, 5 Jan 2024 17:46:49 +0530
Subject: [PATCH] adding endpoint for findForms

---
 endpoints/endpoints.js | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/endpoints/endpoints.js b/endpoints/endpoints.js
index c13385f..903339f 100644
--- a/endpoints/endpoints.js
+++ b/endpoints/endpoints.js
@@ -681,8 +681,11 @@ const endpoints = [
     method: "put",
     route: "/api/rest/assessorUpdateForm",
     requestBody: ["form_id", "form_status"],
-  },
-
+  },{
+    method: "get",
+    route: "/api/rest/findForms",
+    requestBody: ["param"],
+  }
 ];
 
 export default endpoints;
-- 
GitLab