Module: Hyrax::EmbargoesControllerBehavior
- Extended by:
- ActiveSupport::Concern
- Includes:
- Collections::AcceptsBatches, ManagesEmbargoes
- Included in:
- EmbargoesController
- Defined in:
- app/controllers/concerns/hyrax/embargoes_controller_behavior.rb
Class Method Summary collapse
-
.local_prefixes ⇒ Object
This allows us to use the unauthorized template in curation_concerns/base.
Instance Method Summary collapse
-
#destroy ⇒ Object
Removes a single embargo.
- #index ⇒ Object
-
#update ⇒ Object
Updates a batch of embargos.
Methods included from Collections::AcceptsBatches
#batch, #batch=, #check_for_empty_batch?
Methods included from ManagesEmbargoes
Class Method Details
.local_prefixes ⇒ Object
This allows us to use the unauthorized template in curation_concerns/base
34 35 36 |
# File 'app/controllers/concerns/hyrax/embargoes_controller_behavior.rb', line 34 def self.local_prefixes ['hyrax/base'] end |
Instance Method Details
#destroy ⇒ Object
Removes a single embargo
12 13 14 15 16 17 18 19 20 |
# File 'app/controllers/concerns/hyrax/embargoes_controller_behavior.rb', line 12 def destroy Hyrax::Actors::EmbargoActor.new(curation_concern).destroy flash[:notice] = curation_concern..last if curation_concern.work? && curation_concern.file_sets.present? redirect_to else redirect_to end end |
#index ⇒ Object
7 8 9 |
# File 'app/controllers/concerns/hyrax/embargoes_controller_behavior.rb', line 7 def index :index, Hydra::AccessControls::Embargo end |
#update ⇒ Object
Updates a batch of embargos
23 24 25 26 27 28 29 30 31 |
# File 'app/controllers/concerns/hyrax/embargoes_controller_behavior.rb', line 23 def update filter_docs_with_edit_access! copy_visibility = params[:embargoes].values.map { |h| h[:copy_visibility] } ActiveFedora::Base.find(batch).each do |curation_concern| Hyrax::Actors::EmbargoActor.new(curation_concern).destroy curation_concern.copy_visibility_to_files if copy_visibility.include?(curation_concern.id) end redirect_to end |