diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-03-17 15:56:44 +0200 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-03-17 15:56:44 +0200 |
commit | 5b1db58c852d6b36b91a61ec66e2f3cb5187f3a2 (patch) | |
tree | 17d90632a853b6ff92a04a44ae156557da813a49 /lib/api/entities.rb | |
parent | a6f5304280d95c496b7669d1553cc6c246f11f94 (diff) | |
parent | 4171933c0963696626c879c2d05afa1594a71d99 (diff) | |
download | gitlab-ce-5b1db58c852d6b36b91a61ec66e2f3cb5187f3a2.tar.gz |
Merge branch 'master' into rm_duplicate_cache_ci_docs
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 7204dca34ba..9805e53624e 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -408,13 +408,6 @@ module API expose :id, :status, :stage, :name, :ref, :tag, :coverage expose :created_at, :started_at, :finished_at expose :user, with: User - # TODO: download_url in Ci:Build model is an GitLab Web Interface URL, not API URL. We should think on some API - # for downloading of artifacts (see: https://gitlab.com/gitlab-org/gitlab-ce/issues/4255) - expose :download_url do |repo_obj, options| - if options[:user_can_download_artifacts] - repo_obj.artifacts_download_url - end - end expose :artifacts_file, using: BuildArtifactFile, if: -> (build, opts) { build.artifacts? } expose :commit, with: RepoCommit do |repo_obj, _options| if repo_obj.respond_to?(:commit) |