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
path: root/app
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2017-06-14 16:39:59 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2017-06-14 16:39:59 +0300
commit64e85fdaffcd03ef52ff74953b1a4e0caf5a23e8 (patch)
tree909b4d837ec2562eaaf6bd4eb9869704ea903654 /app
parent823b17cfc384927aa606b699c80e4ca61e455124 (diff)
parentf5b97e80b3c9321ac333346f3dce86fbdcc356da (diff)
Merge branch '33149-rename-more-builds' into 'master'
Fix raw_path with the new job path, rename builds to jobs in test Closes #33149 See merge request !11941
Diffstat (limited to 'app')
-rw-r--r--app/serializers/build_details_entity.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/serializers/build_details_entity.rb b/app/serializers/build_details_entity.rb
index cb6d3dfec89..eeb5399aa8b 100644
--- a/app/serializers/build_details_entity.rb
+++ b/app/serializers/build_details_entity.rb
@@ -25,7 +25,7 @@ class BuildDetailsEntity < JobEntity
end
expose :raw_path do |build|
- raw_namespace_project_build_path(project.namespace, project, build)
+ raw_namespace_project_job_path(project.namespace, project, build)
end
private