Sha256: bba08bdc4b17c146d28532644a79d70626e60ca1773d5d61d2ce2bc50b6cb2e6

Contents?: true

Size: 1.23 KB

Versions: 12

Compression:

Stored size: 1.23 KB

Contents

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
  strategy :default

  feature :proxy_deposit,
          default: true,
          description: "Depositors may designate proxies to deposit works on their behalf"

  feature :transfer_works,
          default: true,
          description: "Depositors may transfer their works to another user"

  # Note, if this is deactivated, a default admin set will be created and all
  # works will be assigned to it when they are created.
  feature :assign_admin_set,
          default: true,
          description: "Ability to assign uploaded items to an admin set"

  feature :show_deposit_agreement,
          default: true,
          description: "Show a deposit agreement to users creating works"

  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,
          description: "Enable uploading batches of works"
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
hyrax-2.0.3 config/features.rb
hyrax-2.0.2 config/features.rb
hyrax-2.0.1 config/features.rb
hyrax-2.0.0 config/features.rb
hyrax-2.0.0.rc3 config/features.rb
hyrax-2.0.0.rc2 config/features.rb
hyrax-2.0.0.rc1 config/features.rb
hyrax-2.0.0.beta5 config/features.rb
hyrax-2.0.0.beta4 config/features.rb
hyrax-2.0.0.beta3 config/features.rb
hyrax-2.0.0.beta2 config/features.rb
hyrax-2.0.0.beta1 config/features.rb