summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/controllers/projects/application_controller.rb7
-rw-r--r--app/views/projects/graphs/ci.html.haml1
2 files changed, 8 insertions, 0 deletions
diff --git a/app/controllers/projects/application_controller.rb b/app/controllers/projects/application_controller.rb
index ee88d49b400..e8af4c092da 100644
--- a/app/controllers/projects/application_controller.rb
+++ b/app/controllers/projects/application_controller.rb
@@ -1,6 +1,7 @@
class Projects::ApplicationController < ApplicationController
before_action :project
before_action :repository
+ before_action :ci_enabled, only: :ci
layout 'project'
def authenticate_user!
@@ -25,4 +26,10 @@ class Projects::ApplicationController < ApplicationController
)
end
end
+
+ private
+
+ def ci_enabled
+ return render_404 unless @project.gitlab_ci?
+ end
end
diff --git a/app/views/projects/graphs/ci.html.haml b/app/views/projects/graphs/ci.html.haml
index 2e07b67f8c0..4f69cc64f7c 100644
--- a/app/views/projects/graphs/ci.html.haml
+++ b/app/views/projects/graphs/ci.html.haml
@@ -1,4 +1,5 @@
- page_title "Continuous Integration", "Graphs"
+= render "header_title"
= render 'head'
#charts.ci-charts
= render 'projects/graphs/ci/builds'