I have a Post model. I want users to create comments for comments when creating / updating the accepts_nested_attributes_for :comments message. However, I do not want users to update comments on nested attributes.
Is there a way to do something like accepts_nested_attributes_for :comments, create_only: true ?
source share