Sha256: db8e7e334cb149aff1d0930eb93e9d080d326f52a5f77742e9b6948306cbba88

Contents?: true

Size: 930 Bytes

Versions: 87

Compression:

Stored size: 930 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/events"
require "document/base"
require "document/embedded"
require "document/enum"

module Renalware
  module Events
    class Investigation < Event
      include Document::Base

      scope :transplant_donors, lambda {
        where("document ->> 'modality' = ?", "transplant_donor")
      }
      scope :transplant_recipients, lambda {
        where("document ->> 'modality' = ?", "transplant_recipient")
      }

      class Document < Document::Embedded
        attribute :modality,
                  ::Document::Enum,
                  enums: %i(transplant_donor transplant_recipient other)
        attribute :type, ::Document::Enum # See i18n for options
        attribute :result, String
        validates :modality, presence: true
        validates :type, presence: true
        validates :result, presence: true
      end
      has_document
    end
  end
end

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
renalware-core-2.1.1 app/models/renalware/events/investigation.rb
renalware-core-2.1.0 app/models/renalware/events/investigation.rb
renalware-core-2.0.167 app/models/renalware/events/investigation.rb
renalware-core-2.0.166 app/models/renalware/events/investigation.rb
renalware-core-2.0.165 app/models/renalware/events/investigation.rb
renalware-core-2.0.164 app/models/renalware/events/investigation.rb
renalware-core-2.0.163 app/models/renalware/events/investigation.rb
renalware-core-2.0.162 app/models/renalware/events/investigation.rb
renalware-core-2.0.161 app/models/renalware/events/investigation.rb
renalware-core-2.0.160 app/models/renalware/events/investigation.rb
renalware-core-2.0.159 app/models/renalware/events/investigation.rb
renalware-core-2.0.158 app/models/renalware/events/investigation.rb
renalware-core-2.0.157 app/models/renalware/events/investigation.rb
renalware-core-2.0.156 app/models/renalware/events/investigation.rb
renalware-core-2.0.155 app/models/renalware/events/investigation.rb
renalware-core-2.0.153 app/models/renalware/events/investigation.rb
renalware-core-2.0.152 app/models/renalware/events/investigation.rb
renalware-core-2.0.151 app/models/renalware/events/investigation.rb
renalware-core-2.0.149 app/models/renalware/events/investigation.rb
renalware-core-2.0.148 app/models/renalware/events/investigation.rb