Is there a way to default all new projects to have the assignee for new issues to be unassigned? I know I can change it on a per project basis, but I'd like to change it at a global level.
You could do a SQL update on the Jira DB. if you look at the project table
select ID, pname, URL, LEAD, DESCRIPTION, pkey, pcounter, ASSIGNEETYPE, AVATAR from project
there is a column, assigneeType. It has a sequence of numbers as valid values. I don't think these values link to anything in the DB, rather they are stored in the source code in the AssigneeTypes class: https://docs.atlassian.com/jira/latest/com/atlassian/jira/project/AssigneeTypes.html
A quick look shows you the value for unassigned is 3
You'd have to shut Jira down, do the update & restart and MAKE SURE YOU HAVE A BACKUP...
Oh, & test it first....
/**
* Assignee is set to the default for the project.
*/
public static final long PROJECT_DEFAULT = 0;
/**
* Assignee is set to the {@link com.atlassian.jira.bc.project.component.ProjectComponent} lead.
*/
public static final long COMPONENT_LEAD = 1;
/**
* Assignee is set to the {@link com.atlassian.jira.project.Project} lead.
*/
public static final long PROJECT_LEAD = 2;
/**
* Issue is left with no assignee.
*/
public static final long UNASSIGNED = 3;
I'm not necessarily trying to change all my current project. I'm wondering for new projects if there is a way to make that the defaut setting.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As long as you have unassigned issues set in the general config (https://confluence.atlassian.com/display/JIRA/Configuring+JIRA+Options) you can set it every time you create a project. You can't make it the default selected option in the project creation form, it is what it is.
https://confluence.atlassian.com/display/JIRA/Defining+a+Project
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, I was hoping there was some way to make it the default option, but I guess not.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JIRA 6.0.3 update
Starting with JIRA 6.0.3, when the "Allow unassigned issues" option is ON then the default assignee for newly-created projects will be "Unassigned".
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.