Class: Hyrax::Actors::AddToWorkActor

Inherits:
AbstractActor show all
Defined in:
app/actors/hyrax/actors/add_to_work_actor.rb

Instance Attribute Summary

Attributes inherited from AbstractActor

#next_actor

Instance Method Summary collapse

Methods inherited from AbstractActor

#initialize

Constructor Details

This class inherits a constructor from Hyrax::Actors::AbstractActor

Instance Method Details

#create(env) ⇒ Boolean

Returns true if create was successful.

Parameters:

Returns:

  • (Boolean)

    true if create was successful



6
7
8
9
# File 'app/actors/hyrax/actors/add_to_work_actor.rb', line 6

def create(env)
  work_ids = env.attributes.delete(:in_works_ids)
  next_actor.create(env) && add_to_works(env, work_ids)
end

#update(env) ⇒ Boolean

Returns true if update was successful.

Parameters:

Returns:

  • (Boolean)

    true if update was successful



13
14
15
16
# File 'app/actors/hyrax/actors/add_to_work_actor.rb', line 13

def update(env)
  work_ids = env.attributes.delete(:in_works_ids)
  add_to_works(env, work_ids) && next_actor.update(env)
end