Sha256: 10c05effa7855cd41b7c5751b9e253f4049afe31f8640739316570fd84e79397
Contents?: true
Size: 393 Bytes
Versions: 8
Compression:
Stored size: 393 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 } end end end end
Version data entries
8 entries across 8 versions & 1 rubygems