I'm tyring to keep Agents off to modify the state of a ticket when the tickets have some custom states. For that, I created a new State-Type by inserting it in the DB. The new State Type is called 'transmited'.
My question comes when I try it, and of course, it doesn't work. I've realized that in ACLs, you can use the Ticket Type (not states) like that:
Code: Select all
Properties => {
Type => {
Name => ['Ticket-Type1', Ticket-Type2'],
},
},
Code: Select all
Properties => {
Ticket => {
Type => ['transmited'],
},
Thanks a lot!