summaryrefslogtreecommitdiff
path: root/lib/api/groups.rb
diff options
context:
space:
mode:
authorImre Farkas <ifarkas@gitlab.com>2019-05-27 12:37:53 +0000
committerLin Jen-Shin <godfat@godfat.org>2019-05-27 12:37:53 +0000
commita5488e452ebbe23119a69127fae92c5785519890 (patch)
tree042ca5dd9f4ed585e87ca4be972888fa4655ee8e /lib/api/groups.rb
parent2d980fadb8fe6c54ebcbb56130c88aae2832c9c6 (diff)
downloadgitlab-ce-a5488e452ebbe23119a69127fae92c5785519890.tar.gz
CE-port of Refactor EE specific params override in API::Groups
Diffstat (limited to 'lib/api/groups.rb')
-rw-r--r--lib/api/groups.rb27
1 files changed, 1 insertions, 26 deletions
diff --git a/lib/api/groups.rb b/lib/api/groups.rb
index 6893c8c40be..ec1020c7c78 100644
--- a/lib/api/groups.rb
+++ b/lib/api/groups.rb
@@ -7,34 +7,9 @@ module API
before { authenticate_non_get! }
- helpers do
- params :optional_params_ce do
- optional :description, type: String, desc: 'The description of the group'
- optional :visibility, type: String,
- values: Gitlab::VisibilityLevel.string_values,
- default: Gitlab::VisibilityLevel.string_level(
- Gitlab::CurrentSettings.current_application_settings.default_group_visibility),
- desc: 'The visibility of the group'
- optional :lfs_enabled, type: Boolean, desc: 'Enable/disable LFS for the projects in this group'
- optional :request_access_enabled, type: Boolean, desc: 'Allow users to request member access'
- optional :share_with_group_lock, type: Boolean, desc: 'Prevent sharing a project with another group within this group'
- end
-
- params :optional_params_ee do
- end
-
- params :optional_update_params_ee do
- end
- end
-
- include ::API::Helpers::GroupsHelpers
+ helpers Helpers::GroupsHelpers
helpers do
- params :optional_params do
- use :optional_params_ce
- use :optional_params_ee
- end
-
params :statistics_params do
optional :statistics, type: Boolean, default: false, desc: 'Include project statistics'
end