I want to filter a dynamic filed called 'UT' when I select the QUEUE 'Projects' via ACL.
I atthached the code (Config.pm) and the configuration of the ACL. I din't know why it is working with normal fields ('Priority') but with the dynamic field ('UT' and 'Subcategory') have not worked.
Code: Select all
# ticket acl
$Self->{TicketAcl}->{'100-ACL-UT-QUEUE'} = {
# match properties
Properties => {
# current ticket match properties
Ticket => {
Queue => ['Projects'],
}
},
# return possible options (white list)
Possible => {
# possible ticket options (white list)
Ticket => {
Priority => ['Low'],
UT => ['1'],
Subcategory => ['Other'],
},
},
};