Sha256: 3dc4985b8f6d1be9b6e2501c633a4a659fe95928f64f6cf57bebe65c461f39c6

Contents?: true

Size: 968 Bytes

Versions: 132

Compression:

Stored size: 968 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/patients"
require_dependency "renalware/api"

module Renalware
  module API
    module V1
      module Medications
        class PrescriptionsController < TokenAuthenticatedApiController
          def index
            render locals: {
              patient: patient,
              prescriptions: current_prescriptions_presenter
            }
          end

          private

          def current_prescriptions_presenter
            CollectionPresenter.new(
              current_prescriptions,
              Renalware::Medications::PrescriptionPresenter
            )
          end

          def current_prescriptions
            Renalware::Medications::PrescriptionsQuery.new(
              relation: patient.prescriptions.current
            ).call
          end

          def patient
            Patient.find_by!(secure_id: params[:patient_id])
          end
        end
      end
    end
  end
end

Version data entries

132 entries across 132 versions & 1 rubygems

Version Path
renalware-core-2.0.30 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.28 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.27 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.26 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.25 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.24 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.23 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.22 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.21 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.20 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.18 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb
renalware-core-2.0.17 app/controllers/renalware/api/v1/medications/prescriptions_controller.rb