OTRS: hide -Move- dropdown with ACL

If you want to disable ticket move action for tickets in some states you can use ACL rules. Below you can see an example how to block movement of ticket if ticket is closed.

[Kernel/Config.pm]
        
# Ticket ACL - Disable move for closed
$Self->{TicketAcl}->{'ACL-dont-move'} = {
 # match properties
 Properties => {
  # all closed tickets
  Ticket => {
   State => ['closed', 'closed successful', 'closed unsuccessful', ], 
  },
  
  #disable on AgentTicketZoom page only
  Frontend => {
 Action => [
  'AgentTicketZoom',
 ],
  },
 },

# return possible options (white list)
 Possible => {
  # shouldn't be moved (0)
  Action => {
   AgentTicketMove =>  0,
  },
 }, 

};

No comments:

HOWTO: Repair Logitech M325 Mouse

FixIt says that you will find single screw under CE label. It isn't always true.