From 3951c8fc8b450c5cef461bbebbcedf1ec64f0e2f Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Tue, 6 May 2025 07:31:58 +0000 Subject: [PATCH] chore: add google oauth provider to console project --- app/config/console.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/config/console.php b/app/config/console.php index e37c9b7836..79580c1ba7 100644 --- a/app/config/console.php +++ b/app/config/console.php @@ -46,7 +46,10 @@ $console = [ 'oAuthProviders' => [ 'githubEnabled' => true, 'githubSecret' => System::getEnv('_APP_CONSOLE_GITHUB_SECRET', ''), - 'githubAppid' => System::getEnv('_APP_CONSOLE_GITHUB_APP_ID', '') + 'githubAppid' => System::getEnv('_APP_CONSOLE_GITHUB_APP_ID', ''), + 'googleEnabled' => true, + 'googleSecret' => System::getEnv('_APP_CONSOLE_GOOGLE_SECRET', ''), + 'googleAppid' => System::getEnv('_APP_CONSOLE_GOOGLE_APP_ID', ''), ], ];