views:

63

answers:

2

Hello,

I have a model with nested attributes :

class Foo < ActiveRecord::Base
    has_many :bar
    accepts_nested_attributes_for  :bar
end

It works fine. However I'd want to be sure that for every Foo, I have at least two Bar. I can't access the bar_attributes in my validations so it seems I can't validate it.

Is there any clean way to do so ?

+1  A: 
class Foo < ActiveRecord::Base
  has_many :bars
  accepts_nested_attributes_for  :bar

  def validate
    if self.bars.length < 2
      self.errors.add_to_base("Must have at least 2 bars")
    end
  end
end

The controller will take care of building/updating the bars so you just need to see if you have enough.

Tony Fontenot
Hum and I didn't even think of directly look at bar. Thanks.
Damien MATHIEU
A: 

Tony's answer actually won't handle the case where an existing Foo's bars are deleted.

Since validation of the parent (Foo) happens before the nested children (Bars) are destroyed, Foo will pass validation, then the bars will be destroyed and there will be no errors presented to the user.

I'd add this as a comment but as of now don't have enough reps

serpico7456