You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
504 B
17 lines
504 B
2 years ago
|
class Form::Sales::Questions::PrivacyNotice < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "privacynotice"
|
||
|
@check_answer_label = "Buyer has seen the privacy notice?"
|
||
|
@header = "Declaration"
|
||
|
@type = "checkbox"
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
@guidance_position = GuidancePosition::TOP
|
||
|
@guidance_partial = "privacy_notice_buyer"
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = {
|
||
|
"privacynotice" => { "value" => "The buyer has seen the DLUHC privacy notice" },
|
||
|
}.freeze
|
||
|
end
|