Sha256: a82583474fda24316ba9a7ce1069500fa2b44028ced76ad70902b35d422fdc3a

Contents?: true

Size: 656 Bytes

Versions: 27

Compression:

Stored size: 656 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

class Name
  include Mongoid::Document
  include Mongoid::Attributes::Dynamic

  field :_id, type: String, overwrite: true, default: ->{
    "#{first_name}-#{last_name}"
  }

  field :first_name, type: String
  field :last_name, type: String
  field :parent_title, type: String
  field :middle, type: String

  embeds_many :translations, validate: false
  embeds_one :language, as: :translatable, validate: false
  embedded_in :namable, polymorphic: true
  embedded_in :person

  accepts_nested_attributes_for :language

  def set_parent=(set = false)
    self.parent_title = namable.title if set
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
mongoid-7.3.5 spec/support/models/name.rb
mongoid-7.3.4 spec/support/models/name.rb
mongoid-7.1.11 spec/app/models/name.rb
mongoid-7.2.6 spec/support/models/name.rb
mongoid-7.3.3 spec/support/models/name.rb
mongoid-7.3.2 spec/support/models/name.rb
mongoid-7.2.5 spec/support/models/name.rb
mongoid-7.1.10 spec/app/models/name.rb
mongoid-7.1.9 spec/app/models/name.rb
mongoid-7.2.4 spec/support/models/name.rb
mongoid-7.3.1 spec/support/models/name.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongoid-7.1.7/spec/app/models/name.rb
mongoid-7.3.0 spec/support/models/name.rb
mongoid-7.2.3 spec/support/models/name.rb
mongoid-7.1.8 spec/app/models/name.rb
mongoid-7.2.2 spec/support/models/name.rb
mongoid-7.2.1 spec/support/models/name.rb
mongoid-7.1.7 spec/app/models/name.rb
mongoid-7.2.0 spec/support/models/name.rb
mongoid-7.1.6 spec/app/models/name.rb