Sha256: 74f26f90978d9378186aa4ff83cb7171f1804967feafd41c2a505be21cc0cc31

Contents?: true

Size: 537 Bytes

Versions: 142

Compression:

Stored size: 537 Bytes

Contents

# frozen_string_literal: true

# A Liquid 'Drop' - a safe, read-only presenter compatible with Liquid templates.
# We use Liquid templates for one-off hospital-specific views or print-outs.
require_dependency "renalware/renal"

module Renalware
  module Renal
    class PatientDrop < Liquid::Drop
      def initialize(patient)
        @patient = Renal.cast_patient(patient)
      end

      def profile_prd_description
        patient.profile&.prd_description&.to_s
      end

      private

      attr_reader :patient
    end
  end
end

Version data entries

142 entries across 142 versions & 1 rubygems

Version Path
renalware-core-2.0.84 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.83 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.82 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.81 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.80 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.79 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.78 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.77 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.76 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.75 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.74 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.73 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.72 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.71 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.70 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.69 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.68 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.67 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.64 app/drops/renalware/renal/patient_drop.rb
renalware-core-2.0.63 app/drops/renalware/renal/patient_drop.rb