From 1d62c4bf2521acac47d72d4b15af2df2300a88f9 Mon Sep 17 00:00:00 2001 From: Elena Grahovac Date: Tue, 5 Jan 2016 17:22:21 +0300 Subject: [PATCH] POST for comments and PUT for issues - Thanks to @rumyantseva --- issue.go | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/issue.go b/issue.go index e149e26..b530473 100644 --- a/issue.go +++ b/issue.go @@ -248,3 +248,45 @@ func (s *IssueService) Create(issue *Issue) (*Issue, *http.Response, error) { return responseIssue, resp, nil } + +func (s *IssueService) UpdateFields(issueID string, fields map[string]string) (*Issue, *http.Response, error) { + apiEndpoint := fmt.Sprintf("rest/api/2/issue/%s", issueID) + + type FieldsParams struct { + Fields map[string]string `json:"fields"` + } + + params := FieldsParams{ + Fields: fields, + } + + req, err := s.client.NewRequest("PUT", apiEndpoint, params) + if err != nil { + return nil, nil, err + } + + responseIssue := new(Issue) + resp, _ := s.client.Do(req, responseIssue) + + return responseIssue, resp, nil +} + + func (s *IssueService) AddComment(issueID string, comment string) (*Issue, *http.Response, error) { + apiEndpoint := fmt.Sprintf("rest/api/2/issue/%s/comment", issueID) + + type CommentBody struct { + Body string `json:"body"` + } + + params := CommentBody{Body: comment} + + req, err := s.client.NewRequest("POST", apiEndpoint, params) + if err != nil { + return nil, nil, err + } + + responseIssue := new(Issue) + resp, _ := s.client.Do(req, responseIssue) + + return responseIssue, resp, nil +} \ No newline at end of file