Sha256: 93f61b91db68ddaf66938a6e9cb638732cbeba6e39e6ca3f9ffedd60553101a6
Contents?: true
Size: 1.29 KB
Versions: 13
Compression:
Stored size: 1.29 KB
Contents
module CurationConcerns module EmbargoesControllerBehavior extend ActiveSupport::Concern include CurationConcerns::ManagesEmbargoes include CurationConcerns::Collections::AcceptsBatches def index authorize! :index, Hydra::AccessControls::Embargo end # Removes a single embargo def destroy CurationConcerns::Actors::EmbargoActor.new(curation_concern).destroy flash[:notice] = curation_concern.embargo_history.last if curation_concern.work? && curation_concern.file_sets.present? redirect_to confirm_curation_concerns_permission_path(curation_concern) else redirect_to edit_embargo_path(curation_concern) end end # Updates a batch of embargos 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| CurationConcerns::Actors::EmbargoActor.new(curation_concern).destroy curation_concern.copy_visibility_to_files if copy_visibility.include?(curation_concern.id) end redirect_to embargoes_path end # This allows us to use the unauthorized template in curation_concerns/base def self.local_prefixes ['curation_concerns/base'] end end end
Version data entries
13 entries across 13 versions & 1 rubygems