1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-03-17 20:47:57 +02:00

just added value type 'datetime' to the list in InitIssueWithMetaAndFields

This commit is contained in:
Peter Bueschel 2017-07-31 09:03:34 +02:00
parent aaa2d02b3a
commit cbd1994e39

View File

@ -791,6 +791,8 @@ func InitIssueWithMetaAndFields(metaProject *MetaProject, metaIssuetype *MetaIss
issueFields.Unknowns[jiraKey] = value
case "date":
issueFields.Unknowns[jiraKey] = value
case "datetime":
issueFields.Unknowns[jiraKey] = value
case "any":
// Treat any as string
issueFields.Unknowns[jiraKey] = value