/
Use a workflow validator based on logged hours
Use a workflow validator based on logged hours
interval max = "60m";
interval w = getTimeSpent(key, "jira-users");
string errorMsg = "You must have minutes worked on the issues but must be less than 60";
if(isNull(w) || w > max) {
return false, "error", errorMsg;
}
I want that users can't assign an issue without entering the work log
, multiple selections available,
Related content
Workflow validators
Workflow validators
More like this
Forcing Users to Log Time During a Transition
Forcing Users to Log Time During a Transition
More like this
Map story points to hours and automatically log work on completion
Map story points to hours and automatically log work on completion
More like this
Require users to log work before transitioning an issue
Require users to log work before transitioning an issue
More like this
Writing Conditions Validators and Post Functions
Writing Conditions Validators and Post Functions
Read with this
Validator Recipes
Validator Recipes
Read with this