1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-12-01 22:30:28 +02:00

Moves error handle up so we see the error, instead of just seeing that the value didnt get populated

This commit is contained in:
spmassot
2018-10-17 16:25:06 -04:00
parent b8740711f0
commit f87c8b0ab5
2 changed files with 7 additions and 8 deletions

View File

@@ -31,9 +31,9 @@ type IssueService struct {
// UpdateQueryOptions specifies the optional parameters to the Edit issue
type UpdateQueryOptions struct {
NotifyUsers string `url:"notifyUsers,omitempty"`
OverrideScreenSecurity string `url:"overrideScreenSecurity,omitempty"`
OverrideEditableFlag string `url:"overrideEditableFlag,omitempty"`
NotifyUsers bool `url:"notifyUsers,omitempty"`
OverrideScreenSecurity bool `url:"overrideScreenSecurity,omitempty"`
OverrideEditableFlag bool `url:"overrideEditableFlag,omitempty"`
}
// Issue represents a JIRA issue.