Allow standalone command to create issues

This commit is contained in:
Miguel de la Cruz 2020-03-05 20:42:25 +01:00
parent ab2e28e29e
commit 1b66405f39
6 changed files with 148 additions and 93 deletions

View file

@ -1,9 +1,11 @@
package model
// ToDo: add key-value extra params as a map to allow for customfield_whatever = team
type Campaign struct {
Url string `json:"url"`
Project string `json:"project"`
Epic string `json:"epic"`
Summary string `json:"summary"`
Tickets []*Ticket `json:"tickets,omitempty"`
Url string `json:"url"`
Project string `json:"project"`
Epic string `json:"epic"`
Summary string `json:"summary"`
Template string `json:"template"`
Tickets []*Ticket `json:"tickets,omitempty"`
}