Sha256: 4cff1f7de2447ec26cad8b023dae46bba2c7effbbaf1a077641419946430d6e8
Contents?: true
Size: 419 Bytes
Versions: 87
Compression:
Stored size: 419 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/pd" module Renalware module PD class RegimeTermination < ApplicationRecord include Accountable belongs_to :regime, touch: true validates :terminated_on, timeliness: { type: :date, on_or_after: ->(termination) { termination.regime.start_date } } end end end
Version data entries
87 entries across 87 versions & 1 rubygems