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.
docuseal/lib/templates.rb

21 lines
371 B

# frozen_string_literal: true
module Templates
module_function
def build_field_areas_index(fields)
hash = {}
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