Hello,

I would like to provide multiple actions to a MenuModule/PreMenuModule.

I would like the "Spam" one to move it to the "Junk" queue and close the ticket.  The current action only moves it to the new queue.  What can I add to the arguments to add an additional action to make it also close the ticket?

$Self->{'Ticket::Frontend::PreMenuModule'}->{'460-Spam'} =  {
  'Action' => 'AgentTicketMove',
  'Description' => 'Mark as Spam!',
  'Link' => 'Action=AgentTicketMove&TicketID=$Data{"TicketID"}&DestQueue=Junk',
  'Module' => 'Kernel::Output::HTML::TicketMenuGeneric',
  'Name' => 'Spam'
};


Thanks.