create github oauthconfig with redirecturl (#1700)

This commit is contained in:
poh chiat 2020-05-12 13:23:00 +02:00 committed by GitHub
parent 336e284a46
commit d87cf1c924
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -181,6 +181,7 @@ func (c *githubConnector) oauth2Config(scopes connector.Scopes) *oauth2.Config {
ClientSecret: c.clientSecret,
Endpoint: endpoint,
Scopes: githubScopes,
RedirectURL: c.redirectURI,
}
}