I try to use Ticket ACL for select "note-external" as only possible note type, if userLogin is me.
I did this in Kernel/Config.pm :
Code: Select all
$Self->{TicketAcl}->{'ACL-Name-2'} = {
# match properties
Properties => {
# current ticket match propertiesi
Frontend => {
Action => ['AgentTicketNote'],
},
User => {
UserLogin => ['my login'],
},
},
# return possible options (white list)
Possible => {
Ticket => {
$Self->{'Ticket::Frontend::AgentTicketNote'}->{'ArticleTypes'} => ['note-external'],
},
},
};
Thanks for your help,
Best Regards,