Hi
I want when assignee changed to "A" or "C", add "B" as watcher .
I wrote this script:
if (issue.assignee == "A" || "C")
{
issues.watcher == "B";
}
Is it correct?
Is there a plugin for cover this request?
thanks