I am trying to configure so some states are not accesible for some groups/companies. I don't get it to work, the option "open" is still used. I know open should normally be there, but this is for trying only.
Here's how I do it:
Code: Select all
$Self->{TicketAcl}->{'ACL-Name-6'} = {
Properties => {
User => {
Group_rw => [
'TheGroup',
],
},
},
PossibleNot => {
Ticket => {
State => ['open'],
},
},
};
Thanks in advance!