Class: Hyrax::Actors::TransferRequestActor Deprecated
- Inherits:
-
AbstractActor
- Object
- AbstractActor
- Hyrax::Actors::TransferRequestActor
- Defined in:
- app/actors/hyrax/actors/transfer_request_actor.rb
Overview
Deprecated.
transfer requests are now carried out in response to published
‘object.deposited’ events.
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.
13 14 15 16 |
# File 'app/actors/hyrax/actors/transfer_request_actor.rb', line 13 def create(env) Deprecation.warn('Use Hyrax::Listeners::ProxyDepositListener instead.') next_actor.create(env) && create_proxy_deposit_request(env) end |