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:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-09-17 11:03:46 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2015-09-17 18:09:10 +0300
commit7166f7b7cf18e1760e9d4ccfd9ed9622c0869b30 (patch)
treea96dc75383a53d27eb311652391f9ae154c77e6b /app/controllers
parentb75e4d7149ff40ac4519234b2e351521eb038982 (diff)
Remove CI help
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/ci/helps_controller.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/controllers/ci/helps_controller.rb b/app/controllers/ci/helps_controller.rb
deleted file mode 100644
index a1ee4111614..00000000000
--- a/app/controllers/ci/helps_controller.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-module Ci
- class HelpsController < Ci::ApplicationController
- skip_filter :check_config
-
- def show
- end
-
- def oauth2
- if valid_config?
- redirect_to ci_root_path
- else
- render layout: 'ci/empty'
- end
- end
- end
-end