From 46796ff64ce7cbfac4bc952eac7c35c23d829e56 Mon Sep 17 00:00:00 2001 From: sumanvpacewisdom Date: Tue, 29 Apr 2025 12:43:58 +0530 Subject: [PATCH] mentee iniate api's --- elevate-mentoring/constants/routes.js | 48 +++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/elevate-mentoring/constants/routes.js b/elevate-mentoring/constants/routes.js index 1760d28c..ad150ee6 100644 --- a/elevate-mentoring/constants/routes.js +++ b/elevate-mentoring/constants/routes.js @@ -3076,6 +3076,54 @@ module.exports = { type: 'POST', }, }, + { + sourceRoute: '/mentoring/v1/requestSessions/reject', + type: 'POST', + targetRoute: { + path: '/mentoring/v1/requestSessions/reject', + type: 'POST', + }, + }, + { + sourceRoute: '/mentoring/v1/requestSessions/create', + type: 'POST', + targetRoute: { + path: '/mentoring/v1/requestSessions/', + type: 'POST', + }, + }, + { + sourceRoute: '/mentoring/v1/requestSessions/list', + type: 'GET', + targetRoute: { + path: '/mentoring/v1/requestSessions/list', + type: 'GET', + }, + }, + { + sourceRoute: '/mentoring/v1/requestSessions/getDetails', + type: 'GET', + targetRoute: { + path: '/mentoring/v1/requestSessions/getDetails', + type: 'GET', + }, + }, + { + sourceRoute: '/mentoring/v1/requestSessions/userAvailability', + type: 'GET', + targetRoute: { + path: '/mentoring/v1/requestSessions/userAvailability', + type: 'GET', + }, + }, + { + sourceRoute: '/mentoring/v1/requestSessions/accept', + type: 'POST', + targetRoute: { + path: '/mentoring/v1/requestSessions/accept', + type: 'POST', + }, + }, { sourceRoute: '/mentoring/v1/requestSessions/reject', type: 'POST',