module Gitlab::Client::Projects

def project(id, options = {})

Returns:
  • (Gitlab::ObjectifiedHash) -

Parameters:
  • options (string) -- :with_custom_attributes Include custom attributes in response. (admins only)
  • options (string) -- :statistics Include project statistics.
  • options (string) -- :license Include project license data
  • id (Integer, String) -- The ID or path of a project.
def project(id, options = {})
  get("/projects/#{url_encode id}", query: options)
end