implement submission page

This commit is contained in:
Alex Turchyn
2023-06-20 22:38:38 +03:00
parent 587be1bb67
commit 1da67011c4
17 changed files with 231 additions and 130 deletions
+16
View File
@@ -1,4 +1,20 @@
# frozen_string_literal: true
module Templates
module_function
def build_field_areas_index(template)
hash = {}
template.fields.each do |field|
(field['areas'] || []).each do |area|
hash[area['attachment_uuid']] ||= {}
acc = (hash[area['attachment_uuid']][area['page']] ||= [])
acc << [area, field]
end
end
hash
end
end