vote up 0 vote down star

I have a Course class that has many WeightingScales and I am trying to get the WeightingScales validation to propagate through the system. The short of the problem is that the following code works except for the fact that the errors.add_to_base() call doesn't do anything (that I can see). The Course object saves just fine and the WeightingScale objects fail to save, but I don't ever see the error in the controller.

  def weight_attributes=(weight_attributes)
    weighting_scales.each do |scale|
      scale.weight = weight_attributes.fetch(scale.id.to_s).fetch("weight")

      unless scale.save
        errors.add_to_base("The file is not in CSV format")
      end
    end
  end

My question is similar to this [1]: How can you add errors to a Model without being in a "validates" method?

link text

flag

38% accept rate
When you say propagate through the system, do you mean you want to see the weighting scale errors on the course model when you try to save it? – jonnii Sep 2 at 21:55
Yes, I want the Course model to show the errors when I try to save it. – Richard Sep 3 at 2:09

1 Answer

vote up 1 vote down

If you want the save to fail, you'll need to use a validate method. If not, you'll have to use callbacks like before_save or before_create to check that errors.invalid? is false before you allow the save to go through. Personally, i'll just use validate. Hope it helps =)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.