asciinema.org/app/controllers/application_controller.rb

24 lines
510 B
Ruby
Raw Normal View History

2011-11-23 20:46:18 +00:00
class NotFound < StandardError; end
class ApplicationController < ActionController::Base
protect_from_forgery
2011-11-23 21:27:38 +00:00
rescue_from(ActiveRecord::RecordNotFound) { render 'exceptions/not_found' }
2011-11-23 20:46:18 +00:00
helper_method :current_user
def current_user
2012-03-02 21:33:13 +00:00
@current_user ||= User.find_by_id(session[:user_id]) if session[:user_id]
end
def current_user=(user)
if user
@current_user = user
session[:user_id] = user.id
else
@current_user = nil
session[:user_id] = nil
end
end
end