Method: Gitlab::Client::Packages#project_package_files

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

#project_package_files(project, id) ⇒ Array<Gitlab::ObjectifiedHash>

Get a list of package files of a single package.

Examples:

Gitlab.project_package_files(5, 3)

Parameters:

  • project (Integer, String)

    The ID or name of a project.

  • id (Integer)

    ID of a package.

Returns:



66
67
68
# File 'lib/gitlab/client/packages.rb', line 66

def project_package_files(project, id)
  get("/projects/#{url_encode project}/packages/#{id}/package_files")
end