Sha256: 619fcc9036a2178e1eb088249a9c0991ca6860f3acd06c4ab6a0c965cfd80be9
Contents?: true
Size: 491 Bytes
Versions: 92
Compression:
Stored size: 491 Bytes
Contents
# frozen_string_literal: true resources :patients, only: [] do namespace :low_clearance do resource :dashboard, only: :show resource :profile, only: [:edit, :update] resource :mdm, only: :show, controller: "mdm" end end namespace :low_clearance do resources :mdm_patients, only: :index constraints(named_filter: /#{Renalware::LowClearance::MDM_FILTERS.join("|")}/) do get "mdm_patients/:named_filter", to: "mdm_patients#index", as: :filtered_mdm_patients end end
Version data entries
92 entries across 92 versions & 1 rubygems