Class: Hyrax::Embargo

Inherits:
Valkyrie::Resource
  • Object
show all
Defined in:
app/models/hyrax/embargo.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 embargoes.

Instance Method Summary collapse

Instance Method Details

#active?Boolean

Fix releasing embargos on the day they are expired - this solves a 1 second bug around how midnights are calculated, which causes day of embargos to incorrectly set the permissions to private

Returns:

  • (Boolean)


19
20
21
# File 'app/models/hyrax/embargo.rb', line 19

def active?
  (embargo_release_date.present? && Date.yesterday.end_of_day < embargo_release_date)
end