Support for Icon Urls

This commit is contained in:
Olivier Tremblay 2017-02-20 10:28:15 -05:00
parent 3b87156ddb
commit d5156c770c
No known key found for this signature in database
GPG key ID: 92BFE3C34DC5F22C
2 changed files with 17 additions and 8 deletions

View file

@ -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 {