summaryrefslogtreecommitdiff
path: root/app/controllers/home_controller.rb
blob: 86c36e924230c2051d6c3d7f0fc4d65e8c399340 (plain)
1
2
3
4
5
6
7
8
9
10
11
class HomeController < ApplicationController
  layout 'home'

  respond_to :html

  def index
    if logged_in?
      redirect_to current_user
    end
  end
end