Sha256: 3538bc1a169012adcc7177d00f9f6aebb3f3cd3de9f1d571c407fdd16f07c014

Contents?: true

Size: 483 Bytes

Versions: 142

Compression:

Stored size: 483 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/low_clearance"

module Renalware
  module LowClearance
    class DashboardsController < LowClearance::BaseController
      def show
        authorize patient
        render :show, locals: {
          patient: patient,
          dashboard: dashboard_presenter
        }
      end

      private

      def dashboard_presenter
        DashboardPresenter.new(user: current_user, patient: patient)
      end
    end
  end
end

Version data entries

142 entries across 142 versions & 1 rubygems

Version Path
renalware-core-2.0.18 app/controllers/renalware/low_clearance/dashboards_controller.rb
renalware-core-2.0.17 app/controllers/renalware/low_clearance/dashboards_controller.rb