The ACL below works if I put it on Config.pm, but it doesn't work if I try config it in web interface, please, what I am doing wrong?
ACL in Config.pm:
Code: Select all
$Self->{TicketAcl}->{'100-Example-ACL'} = {
# match properties
Properties => {
# current ticket match properties
Ticket => {
Queue => ['Nivel1'],
Priority => ['5 very high'],
}
},
# return possible options (white list)
Possible => {
# possible ticket options (white list)
Ticket => {
Queue => ['Nivel2'],
},
},
};