How to use workflow enhancer to assign on resolve based on group of assignees?

Moriah Chandler
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.
February 25, 2014

In short, when an issue is assigned to 1 of 3 specific people (could use a group also), I want to assign it to the reporter. If the issues is NOT assigned to one of these 3 people, I want to assign it to a specific user (a dummy QA user). I have read the documentation but I can't find anything on evaluating {Assignee} = user OR user OR user...

2 answers

1 accepted

0 votes
Answer accepted
Moriah Chandler
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.
July 8, 2014

I ended up using a SIL post-function (JJUPIN addon from Kepler-Romano) to achieve this and based it on the component rather than the original assignee.

As simple as:

if(elementExists(components,"Tools")) {
    assignee = reporter;
} else {
    assignee = "heroQA";
}
0 votes
Ruben Straube June 22, 2014

You should be able to use {Assignee} == user OR {Assignee} = user OR {Assignee} == user.

Suggest an answer

Log in or Sign up to answer