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.159 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.158 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.157 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.156 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.155 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.153 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.152 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.151 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.149 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.148 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.147 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.146 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.145 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.144 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.143 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.142 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.141 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.140 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.139 app/controllers/renalware/api/v1/patients/patients_controller.rb
renalware-core-2.0.138 app/controllers/renalware/api/v1/patients/patients_controller.rb