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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-13 21:10:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-13 21:10:36 +0300
commitc787c1559e9e558b83e78354823eb54b9fe8c718 (patch)
tree7e358b80fa7acb74db275ff6043f55f52a87738d /lib/api/entities/commit_detail.rb
parent6df7943512ca90323c69b926404cc561b6305ce2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/api/entities/commit_detail.rb')
-rw-r--r--lib/api/entities/commit_detail.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities/commit_detail.rb b/lib/api/entities/commit_detail.rb
index 22424b38bb9..61238102e9d 100644
--- a/lib/api/entities/commit_detail.rb
+++ b/lib/api/entities/commit_detail.rb
@@ -9,7 +9,7 @@ module API
expose :last_pipeline do |commit, options|
pipeline = commit.last_pipeline if can_read_pipeline?
- ::API::Entities::PipelineBasic.represent(pipeline, options)
+ ::API::Entities::Ci::PipelineBasic.represent(pipeline, options)
end
private