Skip to content

Instantly share code, notes, and snippets.

@overture8
Created February 11, 2010 20:47
Show Gist options
  • Save overture8/301935 to your computer and use it in GitHub Desktop.
Save overture8/301935 to your computer and use it in GitHub Desktop.
class CommentsController < ApplicationController
respond_to :html, :xml, :js
def create
post = Post.find(params[:post_id])
@comment = post.comments.build(params[:comment])
if @comment.save
respond_with(@comment)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment