Skip to content
Snippets Groups Projects
Verified Commit 27863b10 authored by Nick Thomas's avatar Nick Thomas
Browse files

Refactor repository_storages_options_for_select

parent 08e01343
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -96,12 +96,12 @@ module ApplicationSettingsHelper
]
end
 
def repository_storages_options_for_select
def repository_storages_options_for_select(selected)
options = Gitlab.config.repositories.storages.map do |name, storage|
["#{name} - #{storage['path']}", name]
end
 
options_for_select(options, @application_setting.repository_storages)
options_for_select(options, selected)
end
 
def sidekiq_queue_options_for_select
Loading
Loading
Loading
Loading
@@ -537,7 +537,8 @@
.form-group
= f.label :repository_storages, 'Storage paths for new projects', class: 'control-label col-sm-2'
.col-sm-10
= f.select :repository_storages, repository_storages_options_for_select, {include_hidden: false}, multiple: true, class: 'form-control'
= f.select :repository_storages, repository_storages_options_for_select(@application_setting.repository_storages),
{include_hidden: false}, multiple: true, class: 'form-control'
.help-block
Manage repository storage paths. Learn more in the
= succeed "." do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment