Module: UserDefineds

Included in:
Accession, DigitalObject, Resource
Defined in:
backend/app/model/mixins/user_defineds.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



3
4
5
6
7
8
9
10
# File 'backend/app/model/mixins/user_defineds.rb', line 3

def self.included(base)
  base.one_to_one :user_defined

  base.def_nested_record(:the_property => :user_defined,
                         :contains_records_of_type => :user_defined,
                         :corresponding_to_association  => :user_defined,
                         :is_array => false)
end