I\'m a bit lost. I an getting the Rails 4 error: ActiveModel::ForbiddenAttributesError. I understand that this means I need to permit items to pass, which I have done, but I mu
Instead of
@comment = @post.comments.create!(params[:comment])
you want
@comment = @post.comments.create!(comment_params)
You did all the hard work without using the permitted attributes!