Remove state for one group while others are still having it

Moderator: crythias

Locked
Nicsoft
Znuny newbie
Posts: 53
Joined: 12 Aug 2010, 14:58
Znuny Version: 2.4
Location: Stockholm
Contact:

Remove state for one group while others are still having it

Post by Nicsoft »

Hello!

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'],
    },
  },
 };
What's the problem?

Thanks in advance!
Locked