Support for Icon Urls
This commit is contained in:
parent
3b87156ddb
commit
d5156c770c
2 changed files with 17 additions and 8 deletions
10
issue.go
10
issue.go
|
|
@ -2,16 +2,16 @@ package jkl
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"log"
|
||||
"os"
|
||||
"reflect"
|
||||
"strings"
|
||||
"encoding/json"
|
||||
"text/template"
|
||||
"sort"
|
||||
"regexp"
|
||||
"sort"
|
||||
"strings"
|
||||
"text/template"
|
||||
)
|
||||
|
||||
type Search struct {
|
||||
|
|
@ -20,6 +20,7 @@ type Search struct {
|
|||
|
||||
type IssueType struct {
|
||||
Name string `json:"name"`
|
||||
IconURL string `json:",omitempty"`
|
||||
Fields map[string]*FieldSpec
|
||||
}
|
||||
|
||||
|
|
@ -92,6 +93,7 @@ type CommentColl struct {
|
|||
|
||||
type Status struct {
|
||||
Name string
|
||||
IconURL string `json:",omitempty"`
|
||||
}
|
||||
|
||||
type TimeTracking struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue