Hi,
i want to limit user to just, create issue of question type with normal priority.How can i do this?
Add new issue type from admin->issues->Issue Types.
Make normal priority default from admin->issues-> prorities.
You need to be jira administrator.
i just want to do this for 1 user or group , i want all the other user / groups have the ability to create issues with diferent priorities,how can i limit it just for 1 user or for 1 group?
In jira 5.2.8, you can do it with javascript.
is not possible , doing it by creating new scheme , or something like that?
No, you can't do this without a bit of thought and code.
If the priority is on-screen to be set, then the user can set it. Jira does not do "field level security", so it's either there, or it's not. Doesn't matter who the user is.
So, if you want to implement this, you need to put the Priority field on screen, and then wrap some javascript around it to disable selection of the other options in the list. (I think the behaviours plugin can help you a lot with this)
Another option is to place it on screen and then find/write a post-function or listener that will look at the user and set the priority appropriately as they complete the creation.
It looks like you're new here. Sign in or register to get started.