gitlab-org--gitlab-foss/db/fixtures/development/02_settings.rb
Rémy Coutable 64bf46af38
Add labels to seeded issues and merge requests
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-03-12 08:40:15 +01:00

8 lines
317 B
Ruby

# frozen_string_literal: true
# Enable hashed storage, in development mode, for all projects by default.
Gitlab::Seeder.quiet do
ApplicationSetting.create_from_defaults unless ApplicationSetting.current_without_cache
ApplicationSetting.current_without_cache.update!(hashed_storage_enabled: true)
print '.'
end