1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-22 06:39:43 +02:00

Accept SSL for Jira connector

This commit is contained in:
Harvey Kandola 2018-09-11 14:15:39 +01:00
parent 0f19826556
commit 2792c8c1da
2 changed files with 669 additions and 663 deletions

View file

@ -13,6 +13,7 @@ package jira
import (
"bytes"
"crypto/tls"
"encoding/json"
"fmt"
"html/template"
@ -230,7 +231,12 @@ func getCredentials(ctx *provider.Context, store *domain.Store) (login jiraLogin
// Perform Jira login.
func authenticate(login jiraLogin) (c *jira.Client, u *jira.User, err error) {
tp := jira.BasicAuthTransport{Username: login.Username, Password: login.Secret}
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
// client := &http.Client{Transport: tr}
tp := jira.BasicAuthTransport{Username: login.Username, Password: login.Secret, Transport: tr}
c, err = jira.NewClient(tp.Client(), login.URL)
if err != nil {
return