class AppConsentConfirmationComponent
Public Class Methods
Source
# File app/components/app_consent_confirmation_component.rb, line 10 def initialize(consent_form) @consent_form = consent_form end
Public Instance Methods
Source
# File app/components/app_consent_confirmation_component.rb, line 14 def title if response_given? if refused_consent_form_programmes.empty? "Consent confirmed" else "Consent for the #{given_vaccinations} confirmed" end elsif follow_up_requested? "You've asked for a follow-up" else "Consent refused" end end