Files
meet-hub/supabase/config.toml
dwindown a9f7c9b07a Create Pakasir payment edge function to fix CORS issue
- Create create-pakasir-payment edge function to handle payment creation server-side
- Update ConsultingBooking.tsx to use edge function instead of direct API call
- Update Checkout.tsx to use edge function instead of direct API call
- Add config.toml entry for create-pakasir-payment function
- Removes CORS errors when calling Pakasir API from frontend

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-23 21:20:40 +07:00

50 lines
788 B
TOML

project_id = "lovable"
[api]
enabled = true
port = 54321
schemas = ["public", "graphql_public"]
extra_search_path = ["public", "extensions"]
max_rows = 1000
[db]
port = 54322
major_version = 15
[studio]
enabled = true
port = 54323
[functions.pakasir-webhook]
verify_jwt = false
[functions.send-test-email]
verify_jwt = false
[functions.create-meet-link]
verify_jwt = true
[functions.create-google-meet-event]
verify_jwt = false
[functions.handle-order-paid]
verify_jwt = false
[functions.send-consultation-reminder]
verify_jwt = false
[functions.send-notification]
verify_jwt = false
[functions.daily-reminders]
verify_jwt = false
[functions.send-email-v2]
verify_jwt = false
[functions.delete-order]
verify_jwt = false
[functions.create-pakasir-payment]
verify_jwt = false