Do we need to be a JIRA admin to create projects ? Can a project admin not will not be able to create projects ?
Hello,
If you use Jira Server / Data Center, then you need to be a Jira administrator to create a project.
If you use Jira Cloud, then non Jira administrator users can create next generation projects. To create a classic project still needs the Jira administrator permission.
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.
Why it is that way ? Why only in JIRA cloud it is supported ? I thought it is a basic requirement for any Scrum Master to create projects and administer them. What are the available plugins supported in this regard ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure how to answer this question, but it is like this for classic projects. That is why next generation projects were introduced. But next generation projects are available only on Cloud.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We cannot immediately migrate to cloud. We have purchased corporate license for JIRA server. For now we want to use plugins from market place. What are the recommended plugins?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do not know of such an add-on in the marketplace. But it is possible to develop such an add-on.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Or you could use a scripting add-ons like Power Scripts or ScriptRunner.
With these add-ons you could create an issue type, let s say Project, and make a transition, which would be called Create project.
Then add a screen to this transition with the project parameters like Project name, Project Key, Project Url, Project Lead and then add a post function to this transition to create a project.
If you want to use the Power Scripts add-on, the code would look like this:
admCreateProject(
"T3"
,
"Thunderbolt3"
,
"Three thunderbolts in a single hole"
,
"zeus"
,
"http://thunderbolts.olimpus.gr"
,
"PUBLIC"
,
false
,
0
);
You can find more info about admCreateProject method here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Alexey Matveev , curious, would that code allow a user without project permissions to create a project? If so would that not be a ‘security’ hole?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is not a security hole, as long as you do not let users install their own plugins. Basically in a plugin for Jira Server, you can do everything with Jira through Jira Java API.
In Jira Cloud it works differently. In Jira Cloud you do all actions through Jira Cloud Rest API and Jira Cloud Rest Api checks all permissions. So in Jira Cloud it is not possible to create a project without proper permissions, even with custom plugins
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it depends.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your response.We are using JIRA server instance. Then What are the marketplace plugins available for creation of projects ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@srikrishnap , I'm confused by your follow up question. You don't need an addon to add projects you just need permissions to do so. Speak to your admin about getting the necessary permissions. Even if there was an addon for this (doubtful) it would require appropriate permissions otherwise it would violate the Jira permissions which would not be allowed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is it possible to create projects with Project admin role instead of JIRA admin permission ? Kindly clarify.
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.