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
path: root/lib
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-08-28 23:58:36 +0300
committerNick Thomas <nick@gitlab.com>2017-08-30 22:50:44 +0300
commiteb05bdc6f589f6f0713df12582eb9f18fc4022b3 (patch)
tree2a975a959d0ad419362f7b04d0329581af2bc366 /lib
parentb84ca08e351fc9238bef4e6b4bf74158d25d4f1d (diff)
Move the key restriction validation to its own class
Diffstat (limited to 'lib')
-rw-r--r--lib/api/settings.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/settings.rb b/lib/api/settings.rb
index 01123e45ee0..851b226e9e5 100644
--- a/lib/api/settings.rb
+++ b/lib/api/settings.rb
@@ -125,7 +125,7 @@ module API
ApplicationSetting::SUPPORTED_KEY_TYPES.each do |type|
optional :"#{type}_key_restriction",
type: Integer,
- values: ApplicationSetting.supported_key_restrictions(type),
+ values: KeyRestrictionValidator.supported_key_restrictions(type),
desc: "Restrictions on the complexity of uploaded #{type.upcase} keys. A value of #{ApplicationSetting::FORBIDDEN_KEY_VALUE} disables all #{type.upcase} keys."
end