What must be the done if I want to get a list of all the issues that was the most recently modified in a project along with the person that made that modification (not reporter or assignee) ?
Hi @Aisha M
I am afraid you can't do that for Jira Server. Howeve, in the Jira Cloud there is a built-in function "updatedBy" to do this.
There is a ticket (JRASERVER-69208) on Atlassian Jira related to this but I don't think it will be ready soon (or even in the future).
You have to use some apps in order to achieve this.
For instance, if you have Enhancer Plugin for Jira, you can use User History Report to filter what users/groups have done within the specified duration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh bummer, okay :) Got it !
But other than that is there a JQL query to list the issues in a project in the order of recently updated alone ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = ABC AND updated >= -30 ORDER BY UPDATED DESC will return the issues which are updated within 30 days in the ABC project descending order
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.
Always!
Please let me know if you have any questions, mentioning works :D
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.
Please don't be sorry. It's my pleasure to help.
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.