Class: Hyrax::EmbargoService
- Inherits:
-
RestrictionService
- Object
- RestrictionService
- Hyrax::EmbargoService
- Defined in:
- app/services/hyrax/embargo_service.rb
Class Method Summary collapse
-
.assets_under_embargo ⇒ Object
Returns all assets with embargo release date set (assumes that when lease visibility is applied to assets whose leases have expired, the lease expiration date will be removed from its metadata).
-
.assets_with_deactivated_embargoes ⇒ Object
Returns all assets that have had embargoes deactivated in the past.
-
.assets_with_expired_embargoes ⇒ Object
Returns all assets with embargo release date set to a date in the past.
Class Method Details
.assets_under_embargo ⇒ Object
Returns all assets with embargo release date set
(assumes that when lease visibility is applied to assets
whose leases have expired, the lease expiration date will be removed from its metadata)
17 18 19 20 |
# File 'app/services/hyrax/embargo_service.rb', line 17 def builder = Hyrax::EmbargoSearchBuilder.new(self) presenters(builder) end |
.assets_with_deactivated_embargoes ⇒ Object
Returns all assets that have had embargoes deactivated in the past.
23 24 25 26 |
# File 'app/services/hyrax/embargo_service.rb', line 23 def builder = Hyrax::DeactivatedEmbargoSearchBuilder.new(self) presenters(builder) end |
.assets_with_expired_embargoes ⇒ Object
Returns all assets with embargo release date set to a date in the past
9 10 11 12 |
# File 'app/services/hyrax/embargo_service.rb', line 9 def builder = Hyrax::ExpiredEmbargoSearchBuilder.new(self) presenters(builder) end |