Skip to content

Instantly share code, notes, and snippets.

@nuwansh
Created March 25, 2012 04:34
Show Gist options
  • Save nuwansh/2191380 to your computer and use it in GitHub Desktop.
Save nuwansh/2191380 to your computer and use it in GitHub Desktop.
Destroy action [rails3]
def destroy
@object.destroy
respond_to do |format|
format.html {
flash[:notice] = "Deleted object."
redirect_to(objects_path)
}
format.xml { head :ok }
format.json { head :ok }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment