Module: Reform::Form::ActiveRecord::ClassMethods

Defined in:
lib/reform/form/active_record.rb

Instance Method Summary collapse

Instance Method Details

#i18n_scopeObject



15
16
17
# File 'lib/reform/form/active_record.rb', line 15

def i18n_scope
  :activerecord
end

#validates_uniqueness_of(attribute, options = {}) ⇒ Object



11
12
13
14
# File 'lib/reform/form/active_record.rb', line 11

def validates_uniqueness_of(attribute, options={})
  options = options.merge(:attributes => [attribute])
  validates_with(UniquenessValidator, options)
end