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 Trzciński <ayufan@ayufan.eu>2015-09-17 19:22:24 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2015-09-17 19:22:24 +0300
commit0aec0d53b10078613b66b0d41424ee4264ae6406 (patch)
treeb3bc08891b410c7c85845accf55d4de5f6e9e1f4 /app/controllers
parent0e1948fbed1dac965fc1eab58cfb7dae6ac6bd61 (diff)
parent7166f7b7cf18e1760e9d4ccfd9ed9622c0869b30 (diff)
Merge branch 'remove-ci-help' into 'master'
Remove CI help Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/2556 See merge request !1325
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