Sha256: 58ad7f12678ca3d70ba498d98e6987db83374fc3e8c972b46d81b869b8291f50
Contents?: true
Size: 477 Bytes
Versions: 43
Compression:
Stored size: 477 Bytes
Contents
# frozen_string_literal: true module Dato module Local module FieldType class RichText < Array def self.parse(ids, repo) items = if ids ids.map { |id| repo.find(id) } else [] end new(items) end def to_hash(max_depth = 3, current_depth = 0) map { |item| item.to_hash(max_depth, current_depth) } end end end end end
Version data entries
43 entries across 43 versions & 1 rubygems