In follow-up to my previous question (https://community.atlassian.com/t5/Adaptavist-questions/Hide-UI-elements/qaq-p/1481462):
How do I create a condition where the hiding of UI elements ONLY applies to: anonymous users OR logged in users that are member of group XX
Found it myself..
import com.atlassian.jira.component.ComponentAccessor
def groupManager = ComponentAccessor.groupManager
def loggedInUser = ComponentAccessor.jiraAuthenticationContext.loggedInUser
final username = loggedInUser.username
def groupNames = groupManager.getGroupNamesForUser(username).contains("jira-administrators")
groupNames == true
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.