Sha256: d5dddb8695c011b1180f7847d39e91e31b1d6d906946f26bdb254b9442f904fb

Contents?: true

Size: 344 Bytes

Versions: 142

Compression:

Stored size: 344 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/dashboard"

module Renalware
  module Dashboard
    class DashboardsController < BaseController
      skip_after_action :verify_authorized

      def show
        render :show, locals: {
          dashboard: DashboardPresenter.new(current_user)
        }
      end
    end
  end
end

Version data entries

142 entries across 142 versions & 1 rubygems

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