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

feat: Add GetAllStatuses

This commit is contained in:
Omar
2019-08-19 05:59:05 +03:00
committed by Wes McNamee
parent 52ab347903
commit afc96b18d1
5 changed files with 597 additions and 12 deletions

View File

@ -49,6 +49,7 @@ type Client struct {
Filter *FilterService
Role *RoleService
PermissionScheme *PermissionSchemeService
Status *StatusService
}
// NewClient returns a new JIRA API client.
@ -93,6 +94,7 @@ func NewClient(httpClient httpClient, baseURL string) (*Client, error) {
c.Filter = &FilterService{client: c}
c.Role = &RoleService{client: c}
c.PermissionScheme = &PermissionSchemeService{client: c}
c.Status = &StatusService{client: c}
return c, nil
}