module Gitlab::Client::Repositories

def contributors(project, options = {})

Returns:
  • (Array) -

Options Hash: (**options)
  • :sort (String) -- Sort order asc or desc (default = asc).
  • :order_by (String) -- Order by name, email or commits (default = commits).

Parameters:
  • options (Hash) -- A customizable set of options.
  • project (Integer, String) -- The ID or name of a project.
def contributors(project, options = {})
  get("/projects/#{url_encode project}/repository/contributors", query: options)
end