Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Warning

Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center? Click here !


Info
titleAvailability

This routine is available starting with katl-commons 2.5.

This routine is available for Jira server and cloud deployment options.

...

Excerpt
Returns the last date when the worklog was updated.


Parameters for the server version

ParameterTypeRequiredDescription
worklogNumberYesId of the selected worklog.

Parameters for the cloud version:

ParameterTypeRequiredDescription
issueStringYesThe issue key
worklogNumberYesId of the selected worklog.

Return type

Date

Example 1  (server only)

...

Code Block
for(number id in getWorklogIds("admin",key)){
 print(getWorklogUpdatedDate(id))
}

Prints the last date when the admin's worklogs of the current issue were updated.

Example 3 (cloud only)

Code Block
print(getWorklogUpdatedDate(key, 11201))

...