Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-27 03:10:14 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-27 03:10:14 +0300
commit272c39ac05e0d68444114aed58ef2b44e1af30d6 (patch)
tree3394fc1ac0d76d9b69fadea0964c13380d48c8e8 /app/services/update_container_registry_info_service.rb
parent13272cad0b5e74d26722a227b4965944d65b0e79 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/update_container_registry_info_service.rb')
-rw-r--r--app/services/update_container_registry_info_service.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/services/update_container_registry_info_service.rb b/app/services/update_container_registry_info_service.rb
index 7d79b257687..de90e7c71ad 100644
--- a/app/services/update_container_registry_info_service.rb
+++ b/app/services/update_container_registry_info_service.rb
@@ -24,7 +24,8 @@ class UpdateContainerRegistryInfoService
Gitlab::CurrentSettings.update!(
container_registry_vendor: info[:vendor] || '',
container_registry_version: info[:version] || '',
- container_registry_features: info[:features] || []
+ container_registry_features: info[:features] || [],
+ container_registry_db_enabled: info[:db_enabled] || false
)
end
end