- Create new create-google-meet-event edge function - Use service account authentication (no OAuth needed) - Add google_service_account_json field to platform_settings - Add admin UI for service account JSON configuration - Include test connection button in Integrasi tab - Add comprehensive setup documentation - Keep n8n workflows as alternative option Features: - Direct Google Calendar API integration - JWT authentication with service account - Auto-create Google Meet links - No external dependencies needed - Simple configuration via admin panel 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
6 lines
347 B
SQL
6 lines
347 B
SQL
-- Add integration_n8n_test_mode column to platform_settings table
|
|
ALTER TABLE platform_settings
|
|
ADD COLUMN integration_n8n_test_mode BOOLEAN DEFAULT FALSE;
|
|
|
|
-- Add a comment for documentation
|
|
COMMENT ON COLUMN platform_settings.integration_n8n_test_mode IS 'Toggle for n8n webhook test mode - uses /webhook-test/ when true, /webhook/ when false'; |