module Gitlab::Client::Groups

def create_group(name, path, options = {})

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

Parameters:
  • path (String) -- The path of a group.
  • name (String) -- The name of a group.
def create_group(name, path, options = {})
  body = { name: name, path: path }.merge(options)
  post('/groups', body: body)
end