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

  def index
    if logged_in?
      redirect_to current_user
    end
  end
end