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:
authorDouwe Maan <douwe@gitlab.com>2015-12-08 14:55:38 +0300
committerDouwe Maan <douwe@gitlab.com>2015-12-08 15:06:53 +0300
commit86a09cfaf1f1b8106f1538e8bf5a1aac5f086554 (patch)
tree64f3fdd713a2f1cc1b8159d12cc207700e172b40 /app/controllers/projects/graphs_controller.rb
parent3eb209123de65fceec260914fc59f772043b174d (diff)
`builds_enabled` rather than `ci_enabled`
Diffstat (limited to 'app/controllers/projects/graphs_controller.rb')
-rw-r--r--app/controllers/projects/graphs_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/graphs_controller.rb b/app/controllers/projects/graphs_controller.rb
index 418b92040bc..734697839c6 100644
--- a/app/controllers/projects/graphs_controller.rb
+++ b/app/controllers/projects/graphs_controller.rb
@@ -5,7 +5,7 @@ class Projects::GraphsController < Projects::ApplicationController
before_action :require_non_empty_project
before_action :assign_ref_vars
before_action :authorize_download_code!
- before_action :ci_enabled, only: :ci
+ before_action :builds_enabled, only: :ci
def show
respond_to do |format|