Sha256: b666dbbb5d361e30aa381605d9248f3792ced6f11ce947fcf81a737eff0e9742
Contents?: true
Size: 497 Bytes
Versions: 149
Compression:
Stored size: 497 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/patients" # A form object for use behind a form (see to_partial_path) which can add a patient filter # to a page. See Letters/ElectronicReceiptsController for an example. # Works in concert with Patients::SearchQuery. module Renalware module Patients class SearchForm include ActiveModel::Model attr_accessor :term, :url def to_partial_path "renalware/patients/search_form" end end end end
Version data entries
149 entries across 149 versions & 1 rubygems