module Gitlab::Client::Projects

def project_search(query, options={})

Returns:
  • (Array) -

Options Hash: (**options)
  • :sort (String) -- Return requests sorted in asc or desc order
  • :order_by (String) -- Return requests ordered by id, name, created_at or last_activity_at fields
  • :page (String) -- The page to retrieve
  • :per_page (String) -- Number of projects to return per page

Parameters:
  • options (Hash) -- A customizable set of options.
def project_search(query, options={})
  get("/projects/search/#{query}", query: options)
end