Sha256: be5cd5c99f85e0080a672127cee9a0c1478f5a2ca4e4d0a353a3ba0059235056

Contents?: true

Size: 1.12 KB

Versions: 9

Compression:

Stored size: 1.12 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"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hyrax-1.1.1 config/features.rb
hyrax-1.1.0 config/features.rb
hyrax-1.0.5 config/features.rb
hyrax-1.0.4 config/features.rb
hyrax-1.0.3 config/features.rb
hyrax-1.0.2 config/features.rb
hyrax-1.0.1 config/features.rb
hyrax-1.0.0.rc2 config/features.rb
hyrax-1.0.0.rc1 config/features.rb