Sha256: 7e2584436fc7d3970a3aa252a4da87c5ca5742628829afb639af7162a7fe8182
Contents?: true
Size: 634 Bytes
Versions: 43
Compression:
Stored size: 634 Bytes
Contents
# Blockquote Component # ================ # # V3 # ----- # # { # searchable_body: '<p>Edit me</p>', # searchable_author: '' # } # module Promethee::StructureUpgrader::Components class Blockquote < Base def upgraded_attributes { 'body' => { 'searchable' => true, 'translatable' => true, 'type' => 'text', 'value' => attribute('searchable_body'), }, 'author' => { 'searchable' => true, 'translatable' => false, 'type' => 'string', 'value' => string_attribute('searchable_author') } } end end end
Version data entries
43 entries across 43 versions & 1 rubygems