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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-05-22 14:04:07 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-05-22 14:04:07 +0300
commit76a7157c76c47fd4f835a27eeeda7b42012936be (patch)
tree2af829764f509e7d35a9418062a33310d7da48f1 /app/controllers/projects/pipelines_controller.rb
parentfb706d69abb2bb8f07f78b2a14206027f062cc30 (diff)
Abstract persisted/legacy stages in pipeline model
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 172642a1225..7c18c0c4fcb 100644
--- a/app/controllers/projects/pipelines_controller.rb
+++ b/app/controllers/projects/pipelines_controller.rb
@@ -1,5 +1,5 @@
class Projects::PipelinesController < Projects::ApplicationController
- # before_action :whitelist_query_limiting, only: [:create, :retry]
+ before_action :whitelist_query_limiting, only: [:create, :retry] # TODO?
before_action :pipeline, except: [:index, :new, :create, :charts]
before_action :commit, only: [:show, :builds, :failures]
before_action :authorize_read_pipeline!