Class: ApplicationController

Inherits:
ActionController::Base
  • Object
show all
Includes:
ApplicationHelper
Defined in:
app/controllers/application_controller.rb

Instance Method Summary collapse

Methods included from ApplicationHelper

#active_nav, #current_user, #signed_in?

Instance Method Details

#sign_in(user) ⇒ Object



7
8
9
10
11
# File 'app/controllers/application_controller.rb', line 7

def (user)
  if user
    session[:user_id] = user.id
  end
end