You could create a web panel via scriptrunner and set a display condition
{code}
/**/
def user = ComponentAccessor.jiraAuthenticationContext.getLoggedInUser()
def gm = ComponentAccessor.getGroupManager()
//you could specify to show your web panel in specific projects, in specific issue
//and to specific groups
if (jiraHelper.project.key in ["project"] && !issue.isSubTask()) {
def group = gm.getGroupsForUser(user).each {
if (it.toString().toLowerCase() == 'some-group') {
return it
}
}
}
{code}
Nope, it is not possible to do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, nothing, collaboration software is for sharing, not hiding things from others you want to to work with.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.