Skip to content

Instantly share code, notes, and snippets.

@lukesh
Created December 23, 2010 21:33
Show Gist options
  • Save lukesh/753570 to your computer and use it in GitHub Desktop.
Save lukesh/753570 to your computer and use it in GitHub Desktop.
respond_to do |format|
if @comment.save!
format.json do
...
end
format.html do
...
end
else
format.json do
...
end
format.html do
...
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment