Fix linter
This commit is contained in:
parent
1b66405f39
commit
f5f721e6ef
1 changed files with 5 additions and 5 deletions
10
jira/jira.go
10
jira/jira.go
|
@ -1,9 +1,9 @@
|
|||
package jira
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"bytes"
|
||||
"text/template"
|
||||
|
||||
"git.ctrlz.es/mgdelacroix/campaigner/model"
|
||||
|
@ -40,10 +40,10 @@ func (c *JiraClient) GetIssueFromTicket(ticket *model.Ticket, campaign *model.Ca
|
|||
|
||||
data := map[string]string{
|
||||
"Description": description,
|
||||
"Summary": summary,
|
||||
"Project": campaign.Project,
|
||||
"Issue Type": "Story",
|
||||
"Epic Link": campaign.Epic,
|
||||
"Summary": summary,
|
||||
"Project": campaign.Project,
|
||||
"Issue Type": "Story",
|
||||
"Epic Link": campaign.Epic,
|
||||
}
|
||||
|
||||
if team, ok := ticket.Data["team"]; ok {
|
||||
|
|
Loading…
Reference in a new issue