module QueueClassicAdmin
Constants
- VERSION
Public Class Methods
add_custom_action(name, &block)
click to toggle source
# File lib/queue_classic_admin.rb, line 12 def self.add_custom_action(name, &block) action = CustomAction.new(name, &block) custom_actions[action.slug] = action end
add_custom_bulk_action(name, &block)
click to toggle source
# File lib/queue_classic_admin.rb, line 21 def self.add_custom_bulk_action(name, &block) action = CustomAction.new(name, &block) custom_bulk_actions[action.slug] = action end
custom_actions()
click to toggle source
# File lib/queue_classic_admin.rb, line 8 def self.custom_actions @@custom_actions ||= {} end
custom_bulk_actions()
click to toggle source
# File lib/queue_classic_admin.rb, line 17 def self.custom_bulk_actions @@custom_bulk_actions ||= {} end