Skip to content

Commit

Permalink
Merge pull request #698 from ToreMerkely/fix-issue-field-creator-json…
Browse files Browse the repository at this point in the history
…-tag

Fixed issue field cratro json tag
  • Loading branch information
andygrunwald authored Jan 24, 2025
2 parents 48c5a07 + 8c05365 commit fdc08e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cloud/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ type IssueFields struct {
Updated Time `json:"updated,omitempty" structs:"updated,omitempty"`
Description string `json:"description,omitempty" structs:"description,omitempty"`
Summary string `json:"summary,omitempty" structs:"summary,omitempty"`
Creator *User `json:"Creator,omitempty" structs:"Creator,omitempty"`
Creator *User `json:"creator,omitempty" structs:"creator,omitempty"`
Reporter *User `json:"reporter,omitempty" structs:"reporter,omitempty"`
Components []*Component `json:"components,omitempty" structs:"components,omitempty"`
Status *Status `json:"status,omitempty" structs:"status,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion onpremise/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ type IssueFields struct {
Updated Time `json:"updated,omitempty" structs:"updated,omitempty"`
Description string `json:"description,omitempty" structs:"description,omitempty"`
Summary string `json:"summary,omitempty" structs:"summary,omitempty"`
Creator *User `json:"Creator,omitempty" structs:"Creator,omitempty"`
Creator *User `json:"creator,omitempty" structs:"creator,omitempty"`
Reporter *User `json:"reporter,omitempty" structs:"reporter,omitempty"`
Components []*Component `json:"components,omitempty" structs:"components,omitempty"`
Status *Status `json:"status,omitempty" structs:"status,omitempty"`
Expand Down

0 comments on commit fdc08e4

Please sign in to comment.