module Gitlab::Client::Groups

def edit_group(id, options = {})

Returns:
  • (Gitlab::ObjectifiedHash) - Information about the edited group.

Options Hash: (**options)
  • :request_access_enabled (String) -- Allow users to request member access.
  • :lfs_enabled (String) -- Enable/disable Large File Storage (LFS) for the projects in this groupr.
  • :visibility (String) -- The visibility level of the group. Can be private, internal, or public
  • :description (String) -- The description of the group.
  • :path (String) -- The path of the group.
  • :name (String) -- The name of the group.

Parameters:
  • options (Hash) -- A customizable set of options
  • group (Integer) -- The ID.
def edit_group(id, options = {})
  put("/groups/#{url_encode id}", body: options)
end