Sha256: 2e4f3c0548ba0afa6f4a9a8b5c85bd2be2e17d6e3943a993f0f236e4f7560a6d
Contents?: true
Size: 411 Bytes
Versions: 26
Compression:
Stored size: 411 Bytes
Contents
require_dependency "renalware/patients" module Renalware module Patients class ClinicalSummariesController < BaseController skip_after_action :verify_authorized before_action :load_patient def show clinical_summary = Renal::ClinicalSummaryPresenter.new(patient) render :show, locals: { clinical_summary: clinical_summary, patient: patient } end end end end
Version data entries
26 entries across 26 versions & 1 rubygems