File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -199,8 +199,10 @@ async def oauth_authorize_proxy(
199199 if not scope :
200200 logger .warning ("Client didn't provide any scopes! Using default scopes." )
201201 scope = default_scope
202+ logger .debug (f"Default scope: { scope } " )
202203
203204 scopes = scope .split ()
205+ logger .debug (f"Scopes passed: { scopes } " )
204206 for required_scope in default_scope .split ():
205207 if required_scope not in scopes :
206208 scopes .append (required_scope )
Original file line number Diff line number Diff line change @@ -275,6 +275,7 @@ def _setup_auth_2025_03_26(self):
275275 client_id = self ._auth_config .client_id ,
276276 authorize_url = self ._auth_config .authorize_url ,
277277 audience = self ._auth_config .audience ,
278+ default_scope = self ._auth_config .default_scope ,
278279 )
279280 if self ._auth_config .setup_fake_dynamic_registration :
280281 assert self ._auth_config .client_secret is not None
You can’t perform that action at this time.
0 commit comments