2010/02/01

activerecord エラーを追加する方法

  def before_update
    if !check_something?
      self.errors.add(:name, "There's an error with the name")
      self.errors.add_to_base("There's an error with the name")
      return false
    end    
    return true
  end

0 件のコメント: