Fix restricted visibility bugs
Check for nil values in the restricted_visibility_level validation method, and set the restricted visibility request parameter to `[]` when it's missing from the request.
This commit is contained in:
parent
7c3c836d3b
commit
2e672c39a0
2 changed files with 8 additions and 4 deletions
|
@ -21,7 +21,9 @@ class Admin::ApplicationSettingsController < Admin::ApplicationController
|
|||
|
||||
def application_setting_params
|
||||
restricted_levels = params[:application_setting][:restricted_visibility_levels]
|
||||
unless restricted_levels.nil?
|
||||
if restricted_levels.nil?
|
||||
params[:application_setting][:restricted_visibility_levels] = []
|
||||
else
|
||||
restricted_levels.map! do |level|
|
||||
level.to_i
|
||||
end
|
||||
|
|
|
@ -27,9 +27,11 @@ class ApplicationSetting < ActiveRecord::Base
|
|||
if: :home_page_url_column_exist
|
||||
|
||||
validates_each :restricted_visibility_levels do |record, attr, value|
|
||||
value.each do |level|
|
||||
unless Gitlab::VisibilityLevel.options.has_value?(level)
|
||||
record.errors.add(attr, "'#{level}' is not a valid visibility level")
|
||||
unless value.nil?
|
||||
value.each do |level|
|
||||
unless Gitlab::VisibilityLevel.options.has_value?(level)
|
||||
record.errors.add(attr, "'#{level}' is not a valid visibility level")
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue