summaryrefslogtreecommitdiff
path: root/app/controllers/helps_controller.rb
blob: 6fc46ef9e6fe2222823c470609f7c631f3c05e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class HelpsController < ApplicationController
  skip_filter :check_config

  def show
  end

  def oauth2
    if valid_config?
      redirect_to root_path
    else
      render layout: 'empty'
    end
  end
end