Groovy script in script runner

Jeff Underwood September 14, 2012

I'm trying to get users not in the jira-users group with email addresses not equal to: email@email.com. I can get the users not in the jira-users group(see below) but not sure how to complete the if statement to show "users email address not equal to email@email.com. I tried user.getEmail but that didn't work for me. i'm sure it's due to me not adding it correctly. Would someone please direct me to a resource that might assist with this..


for ( user in crowdService.search(query) ) {
if (!crowdService.isUserMemberOfGroup(user.getName(), "jira-users")) {
body = body + user.getName() + "\n"
}
}

Thanks.

1 answer

1 accepted

0 votes
Answer accepted
Jeff Underwood September 25, 2012

This is the answer:

for ( user in crowdService.search(query) ) {
if (!crowdService.isUserMemberOfGroup(user.getName(), "jira-users")) {
if (!user.getEmailAddress().contains (email@email.com)) {
body = body + user.getName() + user.getEmailAddress() + "\n"
}
}

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events