17 lines
341 B
17 lines
341 B
2 years ago
|
class Form::Lettings::Pages::Scheme < ::Form::Page
|
||
3 years ago
|
def initialize(_id, hsh, subsection)
|
||
|
super("scheme", hsh, subsection)
|
||
|
@header = ""
|
||
|
@description = ""
|
||
|
@depends_on = [{
|
||
|
"needstype" => 2,
|
||
|
}]
|
||
|
end
|
||
|
|
||
|
def questions
|
||
3 years ago
|
@questions ||= [
|
||
2 years ago
|
Form::Lettings::Questions::SchemeId.new(nil, nil, self),
|
||
3 years ago
|
]
|
||
|
end
|
||
|
end
|