From 1b765a636c05d70135b3922ba49ce219ea491c04 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 20:56:18 +0000 Subject: [PATCH] Enable JWT verification for process-selective-approval MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update supabase/config.toml to set verify_jwt = true for the process-selective-approval function, aligning platform authentication with the function’s requirements and allowing authenticated POST requests to reach the edge function. --- supabase/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase/config.toml b/supabase/config.toml index c55c2714..c094d369 100644 --- a/supabase/config.toml +++ b/supabase/config.toml @@ -45,7 +45,7 @@ verify_jwt = false verify_jwt = true [functions.process-selective-approval] -verify_jwt = false +verify_jwt = true [functions.process-selective-rejection] verify_jwt = false