config/features.rb in hyrax-3.0.0.pre.rc1 vs config/features.rb in hyrax-3.0.0.pre.rc2

- old
+ new

@@ -1,5 +1,6 @@ +# frozen_string_literal: true Flipflop.configure do # Strategies will be used in the order listed here. strategy :cookie strategy :active_record, class: Hyrax::Feature strategy Hyrax::Strategies::YamlStrategy, config: Hyrax.config.feature_config_path @@ -26,20 +27,20 @@ feature :active_deposit_agreement_acceptance, default: Hyrax.config.active_deposit_agreement_acceptance?, description: "Require an active acceptance of the deposit agreement by checking a checkbox" feature :batch_upload, - default: true, + default: false, description: "Enable uploading batches of works" - feature :analytics_redesign, - default: false, - description: "Display new reporting features. *Very Experimental*" - feature :hide_private_items, default: false, description: "Do not show the private items." feature :hide_users_list, default: true, description: "Do not show users list unless user has authenticated." + + feature :cache_work_iiif_manifest, + default: false, + description: "Use Rails.cache to cache the JSON document for IIIF manifests" end