ACL for Queue visibility per Group

English! place to talk about development, programming and coding
Post Reply
sunylkumar
Znuny newbie
Posts: 16
Joined: 16 Jul 2011, 02:19
Znuny Version: 3.0
Real Name: Sunyl
Company: DDC

ACL for Queue visibility per Group

Post by sunylkumar »

Hi,

I am trying to achieve this condition:

If a user belongs to a particular queue say 'X' then he/she should only be able to view queue 'Y' in phone ticket form in the dropdown;

I have configured ACL like this:

Code: Select all

$Self->{TicketAcl}->{'ACL-Queues'} = {
        # match properties
        Properties => {
		User => {
                Group_rw  => ['X',],
				
            },
		},
		Possible => {
			
				Queue => {
					['Y'],
				},
			
		},
	}		
but this is not working any ideas?
Post Reply