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.
23 lines
610 B
23 lines
610 B
1 year ago
|
class Form::Lettings::Pages::ReferralValueCheck < ::Form::Page
|
||
|
def initialize(id, hsh, subsection)
|
||
|
super
|
||
|
@id = "referral_value_check"
|
||
|
@depends_on = [{ "la_referral_for_general_needs?" => true }]
|
||
|
@title_text = {
|
||
|
"translation" => "soft_validations.referral.title_text",
|
||
|
}
|
||
|
@informative_text = {
|
||
|
"translation" => "soft_validations.referral.hint_text",
|
||
|
"arguments" => [],
|
||
|
}
|
||
|
end
|
||
|
|
||
|
def questions
|
||
|
@questions ||= [Form::Lettings::Questions::ReferralValueCheck.new(nil, nil, self)]
|
||
|
end
|
||
|
|
||
|
def interruption_screen_question_ids
|
||
|
%w[needstype referral]
|
||
|
end
|
||
|
end
|