Class: Hyrax::Lease

Inherits:
Valkyrie::Resource
  • Object
show all
Defined in:
app/models/hyrax/lease.rb

Overview

Note:

Embargo and Lease can, in principle, be collapsed into a single model with a ‘#visibility_during`, `#visibility_after`, `#end_date`, and `#history`. We haven’t made this transition in order to simplify legacy support for ‘Hydra::AccessControls`.

The Valkyrie model for leases.

Instance Method Summary collapse

Instance Method Details

#active?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'app/models/hyrax/lease.rb', line 17

def active?
  (lease_expiration_date.present? && Hyrax::TimeService.time_in_utc < lease_expiration_date)
end