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.
13 lines
445 B
13 lines
445 B
2 years ago
|
class Form::Lettings::Pages::PersonGenderIdentity < ::Form::Page
|
||
|
def initialize(id, hsh, subsection, person_index:)
|
||
|
super(id, hsh, subsection)
|
||
|
@id = "person_#{person_index}_gender_identity"
|
||
|
@depends_on = [{ "details_known_#{person_index}" => 0 }]
|
||
|
@person_index = person_index
|
||
|
end
|
||
|
|
||
|
def questions
|
||
|
@questions ||= [Form::Lettings::Questions::PersonGenderIdentity.new(nil, nil, self, person_index: @person_index)]
|
||
|
end
|
||
|
end
|