Hi all,
We have JIRA cloud solution. Not sure what version it is.
Yesterday, I created a customized project with all the settings, fields, screens, permissions, Kanban board, etc., and saved the project as "MY COMPANY PROJECT TEMPLATE" (for example).
Now, I would like all new projects to use everything about this template.
Is it possible for me to have my custom project "template" show within the "Create Project" modal window?
Screenshot 2016-01-22 09.02.45.png
When I use the "Create with shared configuration", see screenshot above, I am able to choose my "template" project to use for my new project, but unfortunately, this technique does not copy the kanban board settings. ![]()
What is the best way to include my Kanban board settings from another project (i.e., my project "template")?
Is it possible for me to create an option similar to the "Kanban software development" (as seen above) that will create a project and a Kanban board all in one fell swoop?
Honestly, I just want to click a button and have it create a project, with a board included (like Kanban option in above screenshot) and start working.
Optimally, I'd like to not have a project "template" lingering around just so we can use it as a default starting point.
---
Hopefully that all makes sense. Please let me know if I can clarify any of my questions. Thanks a bunch in advance!
I'm afraid there isn't an easy way to do this, because it's a negative query - you're looking for the absence of data. Jira does not store a project created date
The only way I know of doing it without code is:
(I did it the other way - wrote a housekeeping report as a plugin)
Hi Nic,
Thanks for your reply.
I am able to fetch the projects with zero issues using query. But i am not able to fetch the projects which was created 6 months back.Query displays nearly 250+ projects with zero issues but we have to delete the projects which got created 6 months back. As of now the query displays all the projects.
Thanks,
Jayasingh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Correct. You can't look for data that is not there.
There are a couple of tricks I've used in the past though
1. Hack the database
Add a date column to the project table, then add a trigger to the database that sets the date whenever a row is inserted. This works from the point of implementation, but:
2. More advanced SQL and reasonable guesswork
I mentioned a housekeeping report - the one I wrote has some additions to what I wrote above. It explicitly exposes the "project ID", which is the counter for projects. Whilst the numbers themselves aren't a lot of use, the fact that you can rely on the number rising for each project creation means you can know the order in which projects were created.
You can then start to estimate - my report also extracts the oldest issue in any project that has issues. This is NOT the project creation date, but it is (barring move or delete), the project was-first-used date.
Combining a known order of project creation with some knowledge of some of the actual project usage dates enables you to get something resembling "6 months old".
It could well be inaccurate of course, unless people ALWAYS create an issue on the same day the project is created AND that issue is never moved or deleted. But it does get you pretty close.
(I haven't published the report, it was for a client, but you can see how to reconstruct SQL for it)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nic,
I have raised 1 issue regarding upgrade of jira6.1 from jira5.0.7.
Can you please suggest some solution to resolve. PFB Issue
https://answers.atlassian.com/questions/255892/after-upgrading-jira6-1-from-jira5-0-7-services-is-not-getting-displayed
Thanks,
Jayasingh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join two tables `project` and `audit_log`
select PNAME, created, LEAD, PKEY, PCOUNTER, AUTHOR_KEY as project_creator from
(select * from project where pcounter = 0) A
INNER JOIN (SELECT * FROM audit_log WHERE SUMMARY = 'Project created' and created < 'provide-actual-date') B
ON A.PNAME = B.OBJECT_NAME order by created asc
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.