We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 564d545 commit 175258dCopy full SHA for 175258d
ee/tabby-webserver/src/oauth/general.rs
@@ -164,7 +164,10 @@ impl OAuthClient for GeneralClient {
164
let redirect_uri =
165
RedirectUrl::new(self.auth.oauth_callback_url(OAuthProvider::General).await?)?;
166
let scopes_supported = match credential.config_scopes {
167
- Some(config_scopes) => config_scopes.split_whitespace().map(|s| s.to_string()).collect(),
+ Some(config_scopes) => config_scopes
168
+ .split_whitespace()
169
+ .map(|s| s.to_string())
170
+ .collect(),
171
None => vec!["openid".into(), "profile".into(), "email".into()],
172
};
173
0 commit comments