class CmAdmin::Models::Action

def controller_action_name

def controller_action_name
  if action_type == :custom
    'cm_custom_method'
  elsif action_type == :bulk_action
    'cm_bulk_action'
  elsif parent
    "cm_#{parent}"
  else
    "cm_#{name}"
  end
end