User Group and Issue creation

Guillermo Caserotto October 6, 2013

Hi, I want to restrict some fields when a user ( belongs to a group ) create an issue. Also want to autocomplete version and fix version's field.

Can I do that?

The secuence should be something like this:

1. Create Issue

2. Only a few types of issue appears to select ( i would configuring this )

3. Then some fiend will be autocompleted ( i would configuring that too)

4. Create Issue.

Thanks!

3 answers

1 accepted

1 vote
Answer accepted
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2013

2. Only a few types of issue appears to select ( i would configuring this )

You're looking for this (https://jira.atlassian.com/browse/JRA-1330).

3. Then some fiend will be autocompleted ( i would configuring that too)

You might want to consider using post functions to do this. The script runner add on should be useful.
0 votes
Guillermo Caserotto October 6, 2013

Thanks, it seems that i'll have to do it in another way. I saw that screen schemes configuration also meet my needs.

Thanks to all !!

0 votes
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2013

you mean, custom fields should be display for specific users/group? then try with javascript

<script type="text/javascript">  
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
hideField();    
});
hideField();
function hideField(){
        var user=getCurrentUserName();          
        if(isUserInGroup(user,'Developers')){
            //to hide the Activity Tab
            $("#customfield_10571").closest('div.field-group').hide();
        }else {
            AJS.$("#customfield_10571").closest('div.field-group').show();
        }
 
}
function getCurrentUserName()
{
var user;
     AJS.$.ajax({
        url: "/rest/gadget/1.0/currentUser",
        type: 'get',
        dataType: 'json',
        async: false,
        success: function(data) {
            user = data.username;
        }
     });
     return user;
}
   
   
function getGroups(user)
{
var groups;
     AJS.$.ajax({
        url: "/rest/api/2/user?username="+user+"&expand=groups",
        type: 'get',
        dataType: 'json',
        async: false,
        success: function(data) {
            groups = data.groups.items;
        }
     });
     return groups;
}
function isUserInGroup(user, group){
    var groups = getGroups(user);
    for (i = 0; i < groups.length; i++){
         if (groups[i].name == group){
              return true;
         }
    }
    return false;
}
     
 
</script>

check this

https://answers.atlassian.com/questions/215699/can-i-configure-user-group-who-can-view-a-custom-field?page=1#comment-217292

Suggest an answer

Log in or Sign up to answer