Class: CaTissue::ConsentTierStatus
- Inherits:
-
Object
- Object
- CaTissue::ConsentTierStatus
- Defined in:
- lib/catissue/domain/consent_tier_status.rb
Instance Method Summary collapse
-
#minimal_match?(other) ⇒ Boolean
Returns whether this ConsentTierStatus is minimally consistent with the other ConsentTierStatus.
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.
12 13 14 |
# File 'lib/catissue/domain/consent_tier_status.rb', line 12 def minimal_match?(other) super and statement_match?(other) end |