summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2019-01-30 12:09:55 +0100
committerKamil Trzciński <ayufan@ayufan.eu>2019-01-30 12:12:36 +0100
commitc651191d143b71a163d2a27bcf6038404212c437 (patch)
tree93fbac572c2436c32f00524049df93e0b1f98758
parent95e220de3ad1aff2a60a543c1842d838d9bfac26 (diff)
downloadgitlab-ce-c651191d143b71a163d2a27bcf6038404212c437.tar.gz
Prefer to use overrides on PipelinesController
-rw-r--r--app/controllers/projects/pipelines_controller.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/projects/pipelines_controller.rb b/app/controllers/projects/pipelines_controller.rb
index 67827b1d3bb..e6d029c356b 100644
--- a/app/controllers/projects/pipelines_controller.rb
+++ b/app/controllers/projects/pipelines_controller.rb
@@ -69,7 +69,7 @@ class Projects::PipelinesController < Projects::ApplicationController
render json: PipelineSerializer
.new(project: @project, current_user: @current_user)
- .represent(@pipeline, grouped: true)
+ .represent(@pipeline, show_represent_params)
end
end
end
@@ -157,6 +157,10 @@ class Projects::PipelinesController < Projects::ApplicationController
end
end
+ def show_represent_params
+ { grouped: true }
+ end
+
def create_params
params.require(:pipeline).permit(:ref, variables_attributes: %i[key secret_value])
end