I have something like
accepts_nested_attributes_for :questions, :allow_destroy => true, :reject_if => lambda {|q| q[:body].blank?}
The problem is that if I want to update questions and they are empty they are rejected which means they won't be validated.
Is there a way to enforce that the reject only happens on create and not update?