Module: DeleteableActions

Instance Method Summary collapse

Instance Method Details

#deleteObject



31
32
33
# File 'lib/deleteable.rb', line 31

def delete
  destroy
end

#destroyObject



35
36
37
38
39
40
# File 'lib/deleteable.rb', line 35

def destroy
  thing = self.class.name.gsub(/s?Controller$/,'').constantize.find(params[:id])
  thing.delete
  flash[:info] = "#{thing.class.name.gsub(/^.*::/,'').humanize} successfully deleted."
  redirect_to(action: :index)
end

#undeleteObject

:nocov: - not currently supported



43
44
45
46
47
# File 'lib/deleteable.rb', line 43

def undelete
  thing = self.class.name.gsub(/s?Controller$/,'').constantize.find(params[:id])
  thing.undelete
  redirect_to(action: :index)
end