- Add delete button to AdminOrders dialog with Trash2 and AlertTriangle icons - Create delete-order edge function to handle deletion requests - Add database migration for delete_order function with comprehensive cleanup - Update config.toml to register delete-order edge function - Deletion sequence: reviews → consulting slots → order items → user access → order 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
47 lines
733 B
TOML
47 lines
733 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
|