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:
authorLin Jen-Shin <godfat@godfat.org>2016-08-18 10:31:20 +0300
committerLin Jen-Shin <godfat@godfat.org>2016-08-18 10:31:20 +0300
commite8b03baf6b67a14c0db6dbf3a1abaa4a6a173213 (patch)
tree178df94bcf502ebc816c058634e2376ff8457895 /app/helpers/gitlab_routing_helper.rb
parent4fbe044b74aa6a24133732ef8a9bc5063ecef5dd (diff)
Use path rather than URL because it should work for http 302:
Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5142#note_14035941
Diffstat (limited to 'app/helpers/gitlab_routing_helper.rb')
-rw-r--r--app/helpers/gitlab_routing_helper.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/helpers/gitlab_routing_helper.rb b/app/helpers/gitlab_routing_helper.rb
index bc4d976ae68..cd526f17b99 100644
--- a/app/helpers/gitlab_routing_helper.rb
+++ b/app/helpers/gitlab_routing_helper.rb
@@ -152,16 +152,16 @@ module GitlabRoutingHelper
# Artifacts
- def artifacts_action_url(path, project, build)
+ def artifacts_action_path(path, project, build)
args = [project.namespace, project, build]
case path
when 'download'
- download_namespace_project_build_artifacts_url(*args)
+ download_namespace_project_build_artifacts_path(*args)
when 'browse'
- browse_namespace_project_build_artifacts_url(*args)
+ browse_namespace_project_build_artifacts_path(*args)
when 'file'
- file_namespace_project_build_artifacts_url(*args)
+ file_namespace_project_build_artifacts_path(*args)
end
end
end