Merge pull request #1668 from influxdata/fix/auth0-email

add email to auth0 required scopes
pull/10616/head
Jade McGough 2017-06-29 11:59:59 -07:00 committed by GitHub
commit 08c2677b96
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ func NewAuth0(auth0Domain, clientID, clientSecret, redirectURL string, logger ch
ClientID: clientID,
ClientSecret: clientSecret,
RequiredScopes: []string{"openid"},
RequiredScopes: []string{"openid", "email"},
RedirectURL: redirectURL,
AuthURL: authURL,