1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-06 22:13:02 +02:00

added filter support for Jira issues

This commit is contained in:
Sol Cates
2018-10-08 15:18:43 -07:00
parent 5d5990ab65
commit 1d76fca9ba
5 changed files with 215 additions and 0 deletions

View File

@ -40,6 +40,7 @@ type Client struct {
Component *ComponentService
Resolution *ResolutionService
StatusCategory *StatusCategoryService
Filter *FilterService
}
// NewClient returns a new JIRA API client.
@ -81,6 +82,7 @@ func NewClient(httpClient *http.Client, baseURL string) (*Client, error) {
c.Component = &ComponentService{client: c}
c.Resolution = &ResolutionService{client: c}
c.StatusCategory = &StatusCategoryService{client: c}
c.Filter = &FilterService{client: c}
return c, nil
}