[#145] fix to match AuthProvider interface

This commit is contained in:
Cory Bennett
2018-02-21 20:16:12 -08:00
parent 20a9666fcd
commit 80325a5955
+1 -1
View File
@@ -17,7 +17,7 @@ type AuthOptions struct {
Password string
}
func (a *AuthOptions) AuthParams() *jiradata.AuthParams {
func (a *AuthOptions) ProvideAuthParams() *jiradata.AuthParams {
return &jiradata.AuthParams{
Username: a.Username,
Password: a.Password,