Sha256: 3b9a5f322346a29d2efdf7d31fc2b25800a479fd42f6c3b4892b007cf06cd787

Contents?: true

Size: 479 Bytes

Versions: 28

Compression:

Stored size: 479 Bytes

Contents

require_dependency "renalware/pathology/requests/frequency"

module Renalware
  module Pathology
    module Requests
      class Frequency::Once < Frequency
        # NOTE: The Frequency module will only be called if there was a previous observation
        # so an observation is never required if this method gets called.
        def observation_required?(_last_observed_on)
          false
        end

        def once?
          true
        end
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta11 app/models/renalware/pathology/requests/frequency/once.rb
renalware-core-2.0.0.pre.beta10 app/models/renalware/pathology/requests/frequency/once.rb
renalware-core-2.0.0.pre.beta9 app/models/renalware/pathology/requests/frequency/once.rb
renalware-core-2.0.0.pre.beta8 app/models/renalware/pathology/requests/frequency/once.rb
renalware-core-2.0.0.pre.beta7 app/models/renalware/pathology/requests/frequency/once.rb
renalware-core-2.0.0.pre.beta6 app/models/renalware/pathology/requests/frequency/once.rb
renalware-core-2.0.0.pre.beta5 app/models/renalware/pathology/requests/frequency/once.rb
renalware-core-2.0.0.pre.beta4 app/models/renalware/pathology/requests/frequency/once.rb