From 3efb46493f2342d6cfa63f9d57f0ba420d873cdd Mon Sep 17 00:00:00 2001 From: Jannis Andrija Schnitzer Date: Fri, 19 Jan 2018 17:57:08 +0100 Subject: [PATCH] Add MarshalJSON method for Date (untested) --- issue.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/issue.go b/issue.go index 41ba3f0..d47d22e 100644 --- a/issue.go +++ b/issue.go @@ -367,6 +367,14 @@ func (t *Date) UnmarshalJSON(b []byte) error { return nil } +// MarshalJSON will transform the Date object into a short +// date string as JIRA expects during the creation of a +// JIRA request +func (t Date) MarshalJSON() ([]byte, error) { + time := time.Time(t) + return []byte(time.Format("\"2006-01-02\"")), nil +} + // Worklog represents the work log of a JIRA issue. // One Worklog contains zero or n WorklogRecords // JIRA Wiki: https://confluence.atlassian.com/jira/logging-work-on-an-issue-185729605.html