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
459 B
15 lines
459 B
2 years ago
|
class Form::Lettings::Questions::Startertenancy < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "startertenancy"
|
||
|
@check_answer_label = "Is this a starter or introductory tenancy?"
|
||
|
@header = "Is this a starter tenancy?"
|
||
|
@type = "radio"
|
||
|
@check_answers_card_number = 0
|
||
|
@hint_text = ""
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = { "1" => { "value" => "Yes" }, "2" => { "value" => "No" } }.freeze
|
||
|
end
|