From 7e74dc474c28f6035bbda4b81ae51faede4cea20 Mon Sep 17 00:00:00 2001 From: "saish.borkar" Date: Fri, 12 Jul 2024 16:22:05 +0530 Subject: [PATCH] feat:file upload urls added --- elevate-survey/constants/routes.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/elevate-survey/constants/routes.js b/elevate-survey/constants/routes.js index 1daa961f..ca1da2fb 100644 --- a/elevate-survey/constants/routes.js +++ b/elevate-survey/constants/routes.js @@ -49,6 +49,26 @@ module.exports = { path: '/samiksha/v1/pollSubmissions/make/:id', type: 'POST' }, + }, + { + sourceRoute: '/samiksha/v1/files/preSignedUrls', + type: 'POST', + inSequence: false, + orchestrated: false, + targetRoute: { + path: '/samiksha/v1/files/preSignedUrls', + type: 'POST' + }, + }, + { + sourceRoute: '/samiksha/v1/files/getDownloadableUrl', + type: 'GET', + inSequence: false, + orchestrated: false, + targetRoute: { + path: '/samiksha/v1/files/getDownloadableUrl', + type: 'GET' + }, }, ], }