Class: Promethee::StructureUpgrader::Components::Cover

Inherits:
Base
  • Object
show all
Defined in:
app/services/promethee/structure_upgrader/components/cover.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_attributesObject



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/cover.rb', line 20

def upgraded_attributes
  {
    'image' => {
      'searchable' => false,
      'translatable' => false,
      'type' => 'blob',
      'value' => attribute('image')
    },
    'surtitle' => {
      'searchable' => true,
      'translatable' => true,
      'type' => 'string',
      'value' => string_attribute('searchable_surtitle')
    },
    'title' => {
      'searchable' => true,
      'translatable' => true,
      'type' => 'string',
      'value' => string_attribute('searchable_title')
    },
    'subtitle' => {
      'searchable' => true,
      'translatable' => true,
      'type' => 'string',
      'value' => string_attribute('searchable_subtitle')
    }
  }
end