Hi There,
I was trying to make a jquery to list all the project(keys) wich have no issue but I can't seem to find one. I'm afraid JIRA doesn't support this functionality because I saw this question: https://answers.atlassian.com/questions/129235/find-inactive-projects-in-jira which has a redirect to this: https://jira.atlassian.com/browse/JRA-30664...
But maybe someone does have an answer?
Thank you in advance.
Daphne
May be you can use this rest api https://docs.atlassian.com/jira/REST/latest/#id158276
You can use other rest methods and make a JQUERY which will return all the projects which have no issues in them
You can refer this tutorial for using REST in Jquery
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mizan,
Thank you for your answer. It's a bit to technical for me. I will have to ask a developer to do this? Or could you give me directions?
Thanks,
Daphne
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.
SELECT COUNT(*) AS issuecount , project.pkey, pname FROM project, jiraissue WHERE project.id = jiraissue.project GROUP BY project.id HAVING COUNT(*) = 0;
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.
Stand out as a skilled Confluence Cloud administrator. The Confluence Administration for Cloud certification proves you can configure permissions, manage site and space settings, and monitor activity—ensuring secure, effective collaboration for your team.
Start here
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.