Class: Promethee::StructureUpgrader::Components::FaqItem
- Defined in:
- app/services/promethee/structure_upgrader/components/faq_item.rb
Instance Method Summary collapse
Methods inherited from Base
#initialize, #upgrade, #upgraded_data
Constructor Details
This class inherits a constructor from Promethee::StructureUpgrader::Components::Base
Instance Method Details
#upgraded_attributes ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'app/services/promethee/structure_upgrader/components/faq_item.rb', line 20 def upgraded_attributes { 'image' => { 'searchable' => false, 'translatable' => false, 'type' => 'blob', 'value' => attribute('image') }, 'title' => { 'searchable' => true, 'translatable' => true, 'type' => 'string', 'value': string_attribute('searchable_title') }, 'body' => { 'searchable' => true, 'translatable' => true, 'type' => 'text', 'value' => attribute('searchable_body') }, 'special_question' => { 'searchable' => false, 'translatable' => false, 'type' => 'boolean', 'value' => attribute('special_question') } } end |