Make rubocop happy
This commit is contained in:
parent
1488d1f77c
commit
9edaff0d35
1 changed files with 5 additions and 3 deletions
|
@ -7,9 +7,11 @@ module API
|
|||
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 :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'
|
||||
|
|
Loading…
Reference in a new issue