Subject: | Custom fields ignored |
I am passing Ticket->new a reference to a hash of custom fields,
but they are not being set for the ticket.
my $ticket = RT::Client::REST::Ticket->new(
rt=>$rt,
queue=>$q{queue},
subject=>$q{_subject},
requestors=>[$q{_email}],
cf=>\%cf
)->store(text=>$q{comments});
I have verified that %cf is indeed populated, although it is usually
ownly sparsely populated (many keys have no values).