1
0
mirror of https://github.com/volatiletech/authboss.git synced 2025-02-13 13:58:38 +02:00

Merge branch 'nkonev/v2' into v2

This commit is contained in:
Aaron L 2018-07-04 07:28:12 -07:00
commit 8c07f314e2
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -28,3 +28,4 @@ _testmain.go
.idea
defaults/smtp_mailer_test.json

View File

@ -17,7 +17,7 @@ import (
)
func init() {
exchanger = func(_ *oauth2.Config, _ context.Context, _ string) (*oauth2.Token, error) {
exchanger = func(_ *oauth2.Config, _ context.Context, _ string, _ ...oauth2.AuthCodeOption) (*oauth2.Token, error) {
return testToken, nil
}
}