The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi all,
we have 5 users in Jira-admins group so we don't want add any add any other user to that group, if any user accidentally added to that group then an eamil has to be sent to me or my manager that new user added to that admins group. can any one help me to write a groovy script please. thanks in advance
If you have scriptrunner you could look into setting up a Listener on event GroupMembershipCreatedEvent.
There is a listener template to send custom emails.
You can validate which group is affected
import com.atlassian.crowd.event.group.GroupMembershipCreatedEvent
if (event.getGroupName().compareTo("jira-administrators") == 0) {
true
} else {
false
}
Hi everyone, We’re always looking at how to improve Confluence and customer feedback plays an important role in making sure we're investing in the areas that will bring the most value to the most c...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.