Class: UserFieldType

Inherits:
Cortex::FieldType
  • Object
show all
Defined in:
app/models/user_field_type.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#user_idObject

Returns the value of attribute user_id.



2
3
4
# File 'app/models/user_field_type.rb', line 2

def user_id
  @user_id
end

Instance Method Details

#data=(data_hash) ⇒ Object



11
12
13
# File 'app/models/user_field_type.rb', line 11

def data=(data_hash)
  @user_id = data_hash['user_id']
end

#elasticsearch_mappingObject



7
8
9
# File 'app/models/user_field_type.rb', line 7

def elasticsearch_mapping
  { name: mapping_field_name, type: :keyword, index: :not_analyzed }
end

#field_item_as_indexed_json_for_field_type(field_item, options = {}) ⇒ Object



15
16
17
18
19
# File 'app/models/user_field_type.rb', line 15

def field_item_as_indexed_json_for_field_type(field_item, options = {})
  json = {}
  json[mapping_field_name] = field_item.data['user_id']
  json
end