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.0.127 app/models/renalware/events/investigation.rb
renalware-core-2.0.126 app/models/renalware/events/investigation.rb
renalware-core-2.0.125 app/models/renalware/events/investigation.rb
renalware-core-2.0.124 app/models/renalware/events/investigation.rb
renalware-core-2.0.123 app/models/renalware/events/investigation.rb
renalware-core-2.0.121 app/models/renalware/events/investigation.rb
renalware-core-2.0.120 app/models/renalware/events/investigation.rb
renalware-core-2.0.119 app/models/renalware/events/investigation.rb
renalware-core-2.0.118 app/models/renalware/events/investigation.rb
renalware-core-2.0.117 app/models/renalware/events/investigation.rb
renalware-core-2.0.116 app/models/renalware/events/investigation.rb
renalware-core-2.0.115 app/models/renalware/events/investigation.rb
renalware-core-2.0.113 app/models/renalware/events/investigation.rb
renalware-core-2.0.112 app/models/renalware/events/investigation.rb
renalware-core-2.0.111 app/models/renalware/events/investigation.rb
renalware-core-2.0.110 app/models/renalware/events/investigation.rb
renalware-core-2.0.109 app/models/renalware/events/investigation.rb
renalware-core-2.0.108 app/models/renalware/events/investigation.rb
renalware-core-2.0.106 app/models/renalware/events/investigation.rb
renalware-core-2.0.105 app/models/renalware/events/investigation.rb