I have a Post model. I would like to let users create post comments while creating/updating a post by accepts_nested_attributes_for :comments. However, I don't want to let users update comments by nested attributes.
Is there a way to do something like accepts_nested_attributes_for :comments, create_only: true?