gitlab-org--gitlab-foss/app/controllers/ci/helps_controller.rb
2015-08-25 18:42:46 -07:00

16 lines
259 B
Ruby

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