upgrade google drive oauth scope to drive

This commit is contained in:
CREDO23 2026-02-23 16:24:59 +02:00
parent 33bcf19b62
commit 04daf0de71

View file

@ -76,9 +76,9 @@ def get_token_encryption() -> TokenEncryption:
# Google Drive OAuth scopes
SCOPES = [
"https://www.googleapis.com/auth/drive.readonly", # Read-only access to Drive
"https://www.googleapis.com/auth/userinfo.email", # User email
"https://www.googleapis.com/auth/userinfo.profile", # User profile
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"openid",
]