Class: CaTissue::ConsentTierStatus

Inherits:
Object
  • Object
show all
Defined in:
lib/catissue/domain/consent_tier_status.rb

Instance Method Summary collapse

Instance Method Details

#minimal_match?(other) ⇒ Boolean

Returns whether this ConsentTierStatus is minimally consistent with the other ConsentTierStatus. This method returns whether the referenced ConsentTier has the same identifer or statement text as the other referenced ConsentTier.

Returns:

  • (Boolean)


12
13
14
# File 'lib/catissue/domain/consent_tier_status.rb', line 12

def minimal_match?(other)
  super and statement_match?(other)
end