...
Code Block |
---|
string [] testers = usersInRole("TEST", "Product Development Tester"); assignee = testers[0]; |
...
Action
Code Block |
---|
string [] h = fieldHistory(key, "assignee"); string a; if(isNotNull(h[1])) { a = h[1]; } else { a = h[3]; } assignee = a; |