Can you log time for everyone tagged as watchers on a user story or ticket?

Will Robinson November 3, 2017

Since you can tag individual users as watchers on a user story or ticket, can you create a time log entry for all of those people at the same time?

 

One meeting for one hour + Seven attendees = one hour logged for each of the tagged people. 

 

Thank you. 

 

1 answer

1 accepted

1 vote
Answer accepted
Justin Evans
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 3, 2017

If you're on Jira Server or Data Center, you can do something like this with Power Scripts for Jira.

for(number i = 0; i < size(watchers); i = i + 1){    
string userWatcher=getElement(watchers, i);
addWorklogAdjustEstimate(key, userWatcher, "1h", currentDate(), "generated via auto-worklog");
}

Ref: https://confluence.cprime.io/display/SIL/addWorklogAdjustEstimate

Ref: https://confluence.cprime.io/display/SIL/arrayGetElement

The trick would then be to determine when this script should fire. You could fire it when work is logged via an event listener or you could create a button to perform this action when coupled with something like Power Actions for Jira.

Will Robinson November 6, 2017

Thank you Justin. 

Suggest an answer

Log in or Sign up to answer