async getArtifacts()

in src/app/teamcity/teamcity-service.js [48:56]


  async getArtifacts(
    teamcityService, buildType, showLastSuccessful,
    showLastPinned, tags, branch, path = ''
  ) {
    return (await this.getBuildInfo(
      teamcityService, buildType, showLastSuccessful,
      showLastPinned, tags, branch, `/artifacts/children${path}`
    )).file;
  }