Method: Gitlab::Client::Groups#group_search

Defined in:
lib/gitlab/client/groups.rb

#group_search(search, options = {}) ⇒ Array<Gitlab::ObjectifiedHash>

Search for groups by name

Examples:

Gitlab.group_search('gitlab')

Parameters:

  • search (String)

    A string to search for in group names and paths.

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :per_page (String)

    Number of projects to return per page

  • :page (String)

    The page to retrieve

Returns:

[View source]

173
174
175
176
# File 'lib/gitlab/client/groups.rb', line 173

def group_search(search, options = {})
  options[:search] = search
  get('/groups', query: options)
end