Class: ApplicationController
- Inherits:
-
ActionController::Base
- Object
- ActionController::Base
- ApplicationController
- Includes:
- ApplicationHelper
- Defined in:
- app/controllers/application_controller.rb
Direct Known Subclasses
AdminController, FlowController, HandlerController, SigninController, WorkerController
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 sign_in(user) if user session[:user_id] = user.id end end |