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.
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"
}
}
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.