Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2015-12-17 16:24:43 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-14 14:48:12 +0300
commit79fe18d9e7290fb880f1feb5f2c9f3f96b2d74fe (patch)
tree22bf867628500c1eb28427a5a812dd71c9a35493 /app/models/ci/build.rb
parenta385d39ff1ef3cca8b98f75b99022f762fa5b5e5 (diff)
Move build artifacts implementation to separate controller
Diffstat (limited to 'app/models/ci/build.rb')
-rw-r--r--app/models/ci/build.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/build.rb b/app/models/ci/build.rb
index a2dca97ad31..b928416aa11 100644
--- a/app/models/ci/build.rb
+++ b/app/models/ci/build.rb
@@ -326,7 +326,7 @@ module Ci
def download_url
if artifacts_file.exists?
Gitlab::Application.routes.url_helpers.
- download_namespace_project_build_path(project.namespace, project, self)
+ download_namespace_project_build_artifacts_path(project.namespace, project, self)
end
end