module ActiveScaffold::Bridges::PaperTrail::Helper
Public Instance Methods
display_action_links(action_links, record, options, &block)
click to toggle source
Calls superclass method
# File lib/active_scaffold/bridges/paper_trail/helper.rb, line 7 def display_action_links(action_links, record, options, &block) if action_name == 'deleted' action_links = filter_action_links_for_deleted(action_links, record, options) return unless action_links end super(action_links, record, options, &block) end
filter_action_links_for_deleted(action_links, record, options)
click to toggle source
# File lib/active_scaffold/bridges/paper_trail/helper.rb, line 4 def filter_action_links_for_deleted(action_links, record, options) end