Hi All,
Is there any way were we can hide Issue type from the project Create screen? i would like to restrict or Hide "Task" issue type from a project. is that possible.
Appreciate everyone's input.
Senthil
Hi,
To remove an issue type from a project you just remove it from the issue type scheme that associates issue types with a project. Check out the docs on how to do that here:
Thanks for your reply, i don't want to remove. I just want to hide it or restrict so no one use it. Is there any way.
Senthil
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Senthil,
Not that I am aware of. However, what is the point of having the issue type in the project if you aren't going to use it? Or were you wanting to disable it only for some users?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's the good point. Sometime people by mistake create tickets on it , we cant blame everyone, so its better we can hide it
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.
Hello,
You would need an app for it.
You could use the Power Scripts app or the ScriptRunner app.
If you want to use the Power Scripts app, then you would need to setup a live field:
https://confluence.cprime.io/display/JJUPIN/Live+Fields
The code for the live field would look like this:
lfAllowSelectOptions(
"issueType"
, {
"Epic"
,
"Task"
});
In this case only the Epic and Task issue types would be available for selection in the create screen.
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.
You could use the
lfRestrictSelectOptions(
"issueType"
, {Story
});
It would hide the Story issue type from the issue type field in the create screen.
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.
You can find information about pricing here:
Pricing depends on the number of users in your Jira.
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.