Skip to content

Commit

Permalink
Fix connectors API
Browse files Browse the repository at this point in the history
  • Loading branch information
spolu committed Mar 24, 2024
1 parent 20feefa commit 0df8422
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions connectors/src/connectors/google_drive/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,9 @@ export async function getGoogleDriveConfig(
case "pdfEnabled": {
return new Ok(config.pdfEnabled ? "true" : "false");
}
case "largeFilesEnabled": {
return new Ok(config.largeFilesEnabled ? "true" : "false");
}
default:
return new Err(new Error(`Invalid config key ${configKey}`));
}
Expand Down

0 comments on commit 0df8422

Please sign in to comment.