Method: C::Redirect.bulk_action

Defined in:
app/models/c/redirect.rb

.bulk_action(action) ⇒ Object



15
16
17
18
19
20
21
22
23
# File 'app/models/c/redirect.rb', line 15

def self.bulk_action(action)
  case action
  when 'delete'
    destroy_all
    'Deleted Redirects'
  else
    'No action selected'
  end
end