Class: Hyrax::PermissionsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Hyrax::PermissionsController
- Defined in:
- app/controllers/hyrax/permissions_controller.rb
Instance Method Summary collapse
- #confirm ⇒ Object
- #confirm_access ⇒ Object
- #copy ⇒ Object
- #copy_access ⇒ Object
- #curation_concern ⇒ Object
Instance Method Details
#confirm ⇒ Object
6 7 8 |
# File 'app/controllers/hyrax/permissions_controller.rb', line 6 def confirm # intentional noop to display default view end |
#confirm_access ⇒ Object
18 19 20 |
# File 'app/controllers/hyrax/permissions_controller.rb', line 18 def confirm_access # intentional noop to display default view end |
#copy ⇒ Object
11 12 13 14 15 16 |
# File 'app/controllers/hyrax/permissions_controller.rb', line 11 def copy :edit, curation_concern VisibilityCopyJob.perform_later(curation_concern) = 'Updating file permissions. This may take a few minutes. You may want to refresh your browser or return to this record later to see the updated file permissions.' redirect_to [main_app, curation_concern], notice: end |
#copy_access ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'app/controllers/hyrax/permissions_controller.rb', line 22 def copy_access :edit, curation_concern # copy visibility VisibilityCopyJob.perform_later(curation_concern) # copy permissions InheritPermissionsJob.perform_later(curation_concern) redirect_to [main_app, curation_concern], notice: I18n.t("hyrax.upload.change_access_flash_message") end |
#curation_concern ⇒ Object
32 33 34 |
# File 'app/controllers/hyrax/permissions_controller.rb', line 32 def curation_concern @curation_concern ||= Hyrax.query_service.find_by_alternate_identifier(alternate_identifier: params[:id], use_valkyrie: false) end |