Hi guys,
How can I enable the "My Changes: Nofiy Me" option for all users in our organisation without having to go into each account manually?
Is this possible?
Thanks
Karl.
I am afraid this can't be done globally. Perhaps you could inform the users to turn it off individually. Anyway, perhaps you could raise this as feature request at https://jira.atlassian.com which is our issue tracker.
In addition to Josua comment, although you cannot force to turn on for all the users, but you can tweak it to turn on for new users then advise them not to set it on.
To configure the default user preferences, you can go to:
Adminsitration > Users > User Preferences > Notify users of their own changes? and set to NO.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For OnDemand this is not possible. But for all who find this question and need an answer for their own installed JIRA, it's possible to use the Script Runner plugin and this script:
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.user.preferences.PreferenceKeys def userManager = ComponentAccessor.getUserManager() def preferencesManager = ComponentAccessor.getUserPreferencesManager() userManager.getUsers().each { user -> preferencesManager.getPreferences(user).setBoolean(PreferenceKeys.USER_NOTIFY_OWN_CHANGES, true) }
Henning
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.