From 3797e34e0b8061f53901ee892a89768ee4177144 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 18:19:20 +0000 Subject: [PATCH] Add backfill configs with JWT - Update supabase/config.toml to include: - [functions.backfill-park-locations] verify_jwt = true - [functions.backfill-ride-data] verify_jwt = true - [functions.backfill-company-data] verify_jwt = true --- supabase/config.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/supabase/config.toml b/supabase/config.toml index eef41c5b..8f281f5f 100644 --- a/supabase/config.toml +++ b/supabase/config.toml @@ -91,3 +91,12 @@ verify_jwt = true [functions.monitor-rate-limits] verify_jwt = false + +[functions.backfill-park-locations] +verify_jwt = true + +[functions.backfill-ride-data] +verify_jwt = true + +[functions.backfill-company-data] +verify_jwt = true