Compare commits

...
Author SHA1 Message Date
Chirag Aggarwal 3951c8fc8b chore: add google oauth provider to console project 2025-05-06 07:31:58 +00:00
+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', ''),
],
];