Sha256: dbbb5a370fee22f22d9a174fadff2d9fb5e3e17ae73c91065055f1fa5f34fe3a
Contents?: true
Size: 548 Bytes
Versions: 35
Compression:
Stored size: 548 Bytes
Contents
require_dependency "renalware/hd" module Renalware module HD class UnmetPreferencesController < BaseController include PresenterHelper def index query = PatientsWithUnmetPreferencesQuery.new(query_params) patients = query.call.page(params[:page]) authorize(patients) render locals: { query: query.search, patients: present(patients, UnmetPreferencesPresenter) } end private def query_params params.fetch(:q, {}) end end end end
Version data entries
35 entries across 35 versions & 1 rubygems