11 lines
328 B
11 lines
328 B
class Form::Lettings::Pages::PropertyWheelchairAccessible < ::Form::Page |
|
def initialize(id, hsh, subsection) |
|
super |
|
@id = "property_wheelchair_accessible" |
|
@depends_on = [{ "is_general_needs?" => true }] |
|
end |
|
|
|
def questions |
|
@questions ||= [Form::Lettings::Questions::Wheelchair.new(nil, nil, self)] |
|
end |
|
end
|
|
|