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 15:38:25 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-05-22 15:38:25 +0300
commit0b3cca568ddaa43b4531392a8ccc391b1688bfdc (patch)
treef44d3debafe91b133b719de491d6f6f125487ab9 /app/controllers/projects/pipelines_controller.rb
parentbe3a0377dad4da54f5dbc51b88e39394c1b920be (diff)
Fix rubocop offense in pipeline controller specs :cop:
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 c8a4709fe98..b4a8cdadd9b 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] # TODO?
+ before_action :whitelist_query_limiting, only: [:create, :retry]
before_action :pipeline, except: [:index, :new, :create, :charts]
before_action :commit, only: [:show, :builds, :failures]
before_action :authorize_read_pipeline!