From 68d1dae29dbcff656986bb95c38df0c051f882ac Mon Sep 17 00:00:00 2001 From: Paul Hutchinson Date: Tue, 18 Nov 2025 15:33:04 +0000 Subject: [PATCH] [feature] SC-166737/improve app proxy security by restricting where token replacements can go --- manifest.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 11c9f20..702fb69 100644 --- a/manifest.json +++ b/manifest.json @@ -83,12 +83,25 @@ { "url": "https://api.monday.com/v2", "methods": ["POST"], - "timeout": 20 + "timeout": 20, + "settingsInjection": { + "access_token": { + "header": ["Authorization"] + } + } }, { "url": "https://auth.monday.com/oauth2/token", "methods": ["POST"], - "timeout": 20 + "timeout": 20, + "settingsInjection": { + "client_id": { + "body": ["client_id"] + }, + "client_secret": { + "body": ["client_secret"] + } + } } ] }