Every user has a checkbox in the What's New dialog box which says "Don’t show again (Access from ‘Help’ menu)"
Effectively, it can let one disable the What's New pop up every time you login. Is there any possible way we can revert the value of this check box to No without a major change in version? Let's say I have some content in my confluence which everyone should see, I can just bring back the what's new dialog box for everyone. Obviously users should still be able to tick and disable the dialog box for future logins.
Something like this worked for me.
List<String> allUsersInConfluence = userAccessor.getUserNamesWithConfluenceAccess();
ConfluenceUser eachUser = null;
for(String eachUserString:allUsersInConfluence)
{
eachUser = userAccessor.getUserByName(eachUserString);
UserPreferences preferences = userAccessor.getUserPreferences(eachUser);
try {
preferences.setString("confluence.user.whats.new.dont.show.version","UNSET");
} catch (AtlassianCoreException e) {
log.error("Exception "+e);
}
}
}
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.