method
validates_absence_of
v7.0.0 -
Show latest stable
-
0 notes -
Class: ActiveModel::Validations::HelperMethods
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2 (0)
- 4.1.8 (38)
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7 (1)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (2)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (-27)
- 7.1.3.4 (0)
- What's this?
validates_absence_of(*attr_names)
public
Validates that the specified attributes are blank (as defined by Object#present?). Happens by default on save.
class Person < ActiveRecord::Base validates_absence_of :first_name end
The first_name attribute must be in the object and it must be blank.
Configuration options:
-
:message - A custom error message (default is: “must be blank”).
There is also a list of default options supported by every validator: :if, :unless, :on, :allow_nil, :allow_blank, and :strict. See ActiveModel::Validations#validates for more information