Use a workflow validator based on logged hours
<iframe width="494" height="270" src="https://www.youtube.com/embed/90LnxVS6dks" frameborder="0" allowfullscreen></iframe>
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