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.
15 lines
473 B
15 lines
473 B
2 years ago
|
class Form::Lettings::Questions::Declaration < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "declaration"
|
||
|
@check_answer_label = "Tenant has seen the privacy notice"
|
||
|
@header = ""
|
||
|
@type = "checkbox"
|
||
|
@check_answers_card_number = 0
|
||
|
@guidance_partial = "privacy_notice_tenant"
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = { "declaration" => { "value" => "The tenant has seen the DLUHC privacy notice" } }.freeze
|
||
|
end
|