diff options
| author | Tommaso Sciortino <[email protected]> | 2025-06-25 15:38:18 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-25 22:38:18 +0000 |
| commit | 79c647d486a5ef3cf9eb68f23000525e8d2c4a91 (patch) | |
| tree | 43dab16125247ef844b8b46a403935356f98f4cd /packages/cli/src/config/auth.ts | |
| parent | 00b24c917e6c6f5e059fec6cb0a5b55789fa1e1e (diff) | |
Merge "Login with Google Workspace" auth option into "Login with Google" (#1574)
Co-authored-by: Scott Densmore <[email protected]>
Diffstat (limited to 'packages/cli/src/config/auth.ts')
| -rw-r--r-- | packages/cli/src/config/auth.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/cli/src/config/auth.ts b/packages/cli/src/config/auth.ts index 51178513..df47596f 100644 --- a/packages/cli/src/config/auth.ts +++ b/packages/cli/src/config/auth.ts @@ -13,13 +13,6 @@ export const validateAuthMethod = (authMethod: string): string | null => { return null; } - if (authMethod === AuthType.LOGIN_WITH_GOOGLE_ENTERPRISE) { - if (!process.env.GOOGLE_CLOUD_PROJECT) { - return 'GOOGLE_CLOUD_PROJECT environment variable not found. Add that to your .env and try again, no reload needed!'; - } - return null; - } - if (authMethod === AuthType.USE_GEMINI) { if (!process.env.GEMINI_API_KEY) { return 'GEMINI_API_KEY environment variable not found. Add that to your .env and try again, no reload needed!'; |
