Guest User

Untitled

a guest
May 27th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. def create
  2. @comment = Comment.new(params[:comment])
  3. @post = Post.find(params[:comment][:post_id])
  4. @comment.post = @post
  5. @comment.save
  6. redirect_to(@comment)
  7. end
Add Comment
Please, Sign In to add comment