summaryrefslogtreecommitdiff
path: root/lib/api/helpers/settings_helpers.rb
diff options
context:
space:
mode:
authorImre Farkas <ifarkas@gitlab.com>2019-05-30 21:53:25 +0000
committerRobert Speicher <rspeicher@gmail.com>2019-05-30 21:53:25 +0000
commit72e1123691ee97b8a038f0cfc567431a64222a7d (patch)
treebd1707636066b50677cab52ff71543b16eda3cd0 /lib/api/helpers/settings_helpers.rb
parentc18136ae480121576b3b49c46078f46a1ceac9c9 (diff)
downloadgitlab-ce-72e1123691ee97b8a038f0cfc567431a64222a7d.tar.gz
CE port of Move EE specific lines in API::Settings
Diffstat (limited to 'lib/api/helpers/settings_helpers.rb')
-rw-r--r--lib/api/helpers/settings_helpers.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/api/helpers/settings_helpers.rb b/lib/api/helpers/settings_helpers.rb
new file mode 100644
index 00000000000..6441bb579ff
--- /dev/null
+++ b/lib/api/helpers/settings_helpers.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+module API
+ module Helpers
+ module SettingsHelpers
+ extend ActiveSupport::Concern
+ extend Grape::API::Helpers
+
+ params :optional_params_ee do
+ end
+
+ def self.optional_attributes
+ [*::ApplicationSettingsHelper.visible_attributes,
+ *::ApplicationSettingsHelper.external_authorization_service_attributes,
+ :performance_bar_allowed_group_id].freeze
+ end
+ end
+ end
+end