Hello there,
Is there any way to configure JIRA in order to not update or hide the info in the history of a custom field?
The requirement is that a user can fill a value (a kind of rating) but once the value is recorded nobody must see it, neither in screens nor in the history tab.
The value will be used by top management quering the database direclty..
Thanks.
Hi, this CF is your implementation or it is one of the standart JIRA CF as text field, number field atc. ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Agree with Jobin, create new CF type (extends SelectCFType), in update or create method handle your changes and disable history log by
@Override public String getChangelogValue(CustomField field, Object value) { // No log into history tab return null; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Will this disabling of history log also disable email notification if this field value is changed? What if I want to disable history log, but still want the update event to be fired? As of now if this returns null, the changelog.vm email template will not have this field in the $changelog.getRelated("ChildChangeItem") either.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Radek Kantor Your solution is causing the ISSUE_UPDATED event to not be triggered when updating the field via the edit screen.
Any solution for that?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is better that you create a new custom field. With the standard JIRA one, it will surely record the changes.
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.