module Gitlab::Client::ProjectReleaseLinks

def project_release_links(project, tag_name)

Returns:
  • (Array) - List of assets as links from a Release.

Parameters:
  • tag_name (String) -- The tag associated with the Release.
  • project (Integer, String) -- The ID or name of a project.
def project_release_links(project, tag_name)
  get("/projects/#{url_encode project}/releases/#{tag_name}/assets/links")
end