Sha256: 355d1d9d06d6523dd52cd8a458e39f9c92af836486f0d939aa918bad08c3c970
Contents?: true
Size: 239 Bytes
Versions: 149
Compression:
Stored size: 239 Bytes
Contents
# frozen_string_literal: true require "active_support/concern" module Renalware module PatientScope extend ActiveSupport::Concern included do scope :for_patient, ->(patient) { where(patient: patient) } end end end
Version data entries
149 entries across 149 versions & 1 rubygems