summaryrefslogtreecommitdiff
path: root/app/controllers/projects/pipelines_controller.rb
diff options
context:
space:
mode:
authorShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-03-10 18:30:39 +0900
committerShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-03-23 17:11:49 +0900
commit2b33e9eeb68199f7085102a85c06821b991ecd4d (patch)
tree6ffc72228febe014b3ffe0908cff594f377601ff /app/controllers/projects/pipelines_controller.rb
parent170e54236999aebcdf1508b47a00f9b692b3f8db (diff)
downloadgitlab-ce-2b33e9eeb68199f7085102a85c06821b991ecd4d.tar.gz
with_status to only_status
Diffstat (limited to 'app/controllers/projects/pipelines_controller.rb')
-rw-r--r--app/controllers/projects/pipelines_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/pipelines_controller.rb b/app/controllers/projects/pipelines_controller.rb
index 976827040ac..12ab43665f2 100644
--- a/app/controllers/projects/pipelines_controller.rb
+++ b/app/controllers/projects/pipelines_controller.rb
@@ -75,7 +75,7 @@ class Projects::PipelinesController < Projects::ApplicationController
def status
render json: PipelineSerializer
.new(project: @project, user: @current_user)
- .with_status
+ .only_status
.represent(@pipeline)
end