Why does the condition "cfValues['My Field Name'].getValue() == currentUser" not work?

John Nash January 7, 2015
 

3 answers

0 votes
Midori
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.
January 8, 2015

I'd try if it is better to compare user names (as strings) instead of comparing the complete user objects via equals()?

Something like this (not tested, but you will get the idea):

cfValues['My Field Name'].getValue().name == currentUser.name

 

 

0 votes
John Nash January 7, 2015

one of the given examples for conditions is:

currentUser == issue.reporter

so imho currentUser is valid... though something is clearly wrong, because like I said, the condition above doesn't work sad

Peter Bengov
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.
January 7, 2015

A. please provide more data on what you are trying to accomplish. I assume you are using Script Runner to achieve this task B. You should comment instead of answering, otherwise it's harder to reply in an orderly fashion and keep the order generally within Q&A sites.

John Nash January 7, 2015

Basically what I want is for only the user that is identified in a custom field to be allowed to perform a specific workflow transition. For achieving this I was trying to add a condition to the transition (the condition of the tittle of this thread). Yes, I have Script Runner installed. Thank you for your help!

0 votes
Peter Bengov
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.
January 7, 2015

I don't thing that currentUser is a valid option. As far as I know, it does not calculate the current user that runs this script. If one of the 'My field Name' options is actually a string that says 'currentUser', then try to add " around this word.

Suggest an answer

Log in or Sign up to answer