The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Need to identify, who added the custom field values in jira

Dinesh babu
November 7, 2019

Need to identify, who added the custom field values in jira

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Christian_Schönert
Contributor
November 7, 2019

I think your best start is the ChangeHistoryManager, which you can inject or get by ComponentAccessor.getChangeHistoryManager()

https://docs.atlassian.com/software/jira/docs/api/7.0.5/com/atlassian/jira/issue/changehistory/ChangeHistoryManager.html

 

As far as I recall, you get a List of ChangeHistoryItem where you can extract all relevant Information (getField, getFroms, getTos, etc.). The basic idea would be to look for a change from an empty value to something longer.

 

Best regards,

Chris

0 votes
Dominik Žarković
November 7, 2019

Isn't that shown in Activity panel ?