Submit social housing lettings and sales data (CORE)
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.
|
|
|
module FormPageErrorHelper
|
|
|
|
def remove_other_page_errors(lettings_log, page)
|
|
|
|
other_page_error_ids = lettings_log.errors.map(&:attribute) - page.questions.map { |q| q.id.to_sym }.concat([:base])
|
|
|
|
other_page_error_ids.each { |id| lettings_log.errors.delete(id) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def all_questions_affected_by_errors(log)
|
|
|
|
log.errors.map(&:attribute) - [:base]
|
|
|
|
end
|
|
|
|
end
|