Sha256: 57a376359eaceeb268156072e9de48d7a99b317824688210a80fa4669adfd88d
Contents?: true
Size: 478 Bytes
Versions: 29
Compression:
Stored size: 478 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
29 entries across 29 versions & 1 rubygems