Class: UcbRails::HomeController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/ucb_rails/home_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



3
4
5
6
7
8
9
# File 'app/controllers/ucb_rails/home_controller.rb', line 3

def index
  if logged_in?
    render 'logged_in'
  else
    render 'not_logged_in'
  end
end