Refresh Gitea Oauth2 token

This commit is contained in:
techknowlogick 2019-04-22 16:54:25 -04:00 committed by GitHub
parent 0a026b464c
commit 9ced52ab50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -172,5 +172,13 @@ func provideRefresher(config config.Config) *oauth2.Refresher {
Source: oauth2.ContextTokenSource(),
}
}
if config.Gitea.ClientID != "" {
return &oauth2.Refresher{
ClientID: config.Gitea.ClientID,
ClientSecret: config.Gitea.ClientSecret,
Endpoint: config.Server.Addr + "/login/oauth/access_token",
Source: oauth2.ContextTokenSource(),
}
}
return nil
}