chore: add google oauth provider to console project

This commit is contained in:
Chirag Aggarwal
2025-05-06 07:31:58 +00:00
parent e9edf013b0
commit 3951c8fc8b
+4 -1
View File
@@ -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', ''),
],
];