From 4cc456602f859717d61a95ac5a8043e1b3b38df4 Mon Sep 17 00:00:00 2001 From: Taylor Wilsdon Date: Wed, 4 Mar 2026 16:36:34 -0500 Subject: [PATCH] drive scope fix --- auth/service_decorator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auth/service_decorator.py b/auth/service_decorator.py index d210a08..a045f84 100644 --- a/auth/service_decorator.py +++ b/auth/service_decorator.py @@ -28,6 +28,7 @@ from auth.scopes import ( GMAIL_MODIFY_SCOPE, GMAIL_LABELS_SCOPE, GMAIL_SETTINGS_BASIC_SCOPE, + DRIVE_SCOPE, DRIVE_READONLY_SCOPE, DRIVE_FILE_SCOPE, DOCS_READONLY_SCOPE, @@ -426,6 +427,7 @@ SCOPE_GROUPS = { "gmail_labels": GMAIL_LABELS_SCOPE, "gmail_settings_basic": GMAIL_SETTINGS_BASIC_SCOPE, # Drive scopes + "drive": DRIVE_SCOPE, "drive_read": DRIVE_READONLY_SCOPE, "drive_file": DRIVE_FILE_SCOPE, # Docs scopes