Class: ForestLiana::HasManyAssociator

Inherits:
Object
  • Object
show all
Defined in:
app/services/forest_liana/has_many_associator.rb

Instance Method Summary collapse

Constructor Details

#initialize(resource, association, params) ⇒ HasManyAssociator

Returns a new instance of HasManyAssociator.



3
4
5
6
7
8
# File 'app/services/forest_liana/has_many_associator.rb', line 3

def initialize(resource, association, params)
  @resource = resource
  @association = association
  @params = params
  @data = params['data']
end

Instance Method Details

#performObject



10
11
12
13
14
15
16
17
18
19
# File 'app/services/forest_liana/has_many_associator.rb', line 10

def perform
  @record = @resource.find(@params[:id])
  associated_records = @resource.find(@params[:id]).send(@association.name)

  if @data.is_a?(Array)
    @data.each do |record_added|
      associated_records << @association.klass.find(record_added[:id])
    end
  end
end