Class: Hyrax::Actors::TransferRequestActor
- Inherits:
-
AbstractActor
- Object
- AbstractActor
- Hyrax::Actors::TransferRequestActor
- Defined in:
- app/actors/hyrax/actors/transfer_request_actor.rb
Overview
Notify the provided owner that their proxy wants to make a deposit on their behalf
Instance Attribute Summary
Attributes inherited from AbstractActor
Instance Method Summary collapse
-
#create(env) ⇒ Boolean
True if create was successful.
Methods inherited from AbstractActor
Constructor Details
This class inherits a constructor from Hyrax::Actors::AbstractActor
Instance Method Details
#create(env) ⇒ Boolean
Returns true if create was successful.
9 10 11 |
# File 'app/actors/hyrax/actors/transfer_request_actor.rb', line 9 def create(env) next_actor.create(env) && create_proxy_deposit_request(env) end |