Sha256: 3a2d78a27e90ff9ff8023bb64f8d9c663295042c87e527596f5e3c98a9562dac

Contents?: true

Size: 979 Bytes

Versions: 132

Compression:

Stored size: 979 Bytes

Contents

# frozen_string_literal: true

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

module Renalware
  module API
    module V1
      module Patients
        class PatientsController < TokenAuthenticatedApiController
          include Concerns::Pageable

          def show
            patient = Patient.find_by!(local_patient_id: params[:id])
            render locals: { patient: patient }
          end

          def index
            render locals: { patients: patients }
          end

          private

          def patients
            relation = last_patient_id.blank? ? Patient.none : Patient
            relation
              .where("id > ?", last_patient_id)
              .order(id: :asc)
              .page(page).per(per_page)
          end

          def last_patient_id
            params[:last_patient_id]
          end

          def per_page
            params[:per_page] || 100
          end
        end
      end
    end
  end
end

Version data entries

132 entries across 132 versions & 1 rubygems

Version Path
renalware-core-2.0.137 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.136 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.135 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.134 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.133 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.132 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.131 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.130 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.129 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.128 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.127 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.126 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.125 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.124 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.123 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.121 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.120 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.119 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.118 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.117 app/controllers/renalware/api/v1/patients/patients_controller.rb