I created dropdown DynamicField with 4 options to choose, this field is visible in customer frontend, now I wanted to the "one queue" restrict options to only 2 in Config.pm. OTRS 3.1.2 It looks like this:
Queue name: "MyQueue"
DynamicField name: "MyDynamicFiled"
Dropdown options: "Option1", "Option2"... "Option4"
Code: Select all
# Lokalizacje dla karty
$Self->{TicketAcl}->{'ACL101'}={
Properties => {
Queue => {
Name => ['MyQueue'],
},
},
Possible => {
Ticket => {
DynamicField_MyDynamicField => ['Option3','Option4'],
},
},
};