Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Scriptrunner - Fragment custom web item - Restrict to specific groups

Sam Thornton
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.
June 7, 2023

Hey all,

I'm currently adding a top menu item as a custom web item using Scriptrunner (JSM Data Center). My intension is to add a condition to restrict this to a group.

The example snippet within the condition allows me to restrict what is shown per project, however, I'd like to restrict it to groups.

For example, only the 1st line team can only view the Jira form to raise a ticket from a telephone call, etc.

I've been looking through the adaptavist documentation but haven't quite found what I'm looking for. Is this possible, and if so, could someone point me in the right direction, please?

Many thanks in advance!

1 answer

1 accepted

1 vote
Answer accepted
Seifallah Bellassoued
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.
June 7, 2023

Dear Sam,

You can try this code in your condition:

 

import com.atlassian.jira.component.ComponentAccessor

def groupManager = ComponentAccessor.groupManager

def loggedInUser = ComponentAccessor.jiraAuthenticationContext.loggedInUser

final username = loggedInUser.username

final groupName = "GROUP NAME" //TO BE UPDATED - PUT YOUR GROUP NAME HERE

def groupNames = groupManager.getGroupNamesForUser(username)

return groupNames.contains(groupName)
Best Regards,
Seif,
Sam Thornton
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.
June 8, 2023

Amazing! Thank you so much, that worked like a treat.

Like Seifallah Bellassoued likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
SERVER
TAGS
AUG Leaders

Atlassian Community Events