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



7
8
9
10
11
12
13
# File 'app/actors/hyrax/actors/add_to_work_actor.rb', line 7

def create(env)
  work_ids = env.attributes.delete(:in_works_ids)

  can_edit_works?(env, work_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



17
18
19
20
# File 'app/actors/hyrax/actors/add_to_work_actor.rb', line 17

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