Skip to content

Instantly share code, notes, and snippets.

@radar
Created January 6, 2015 23:39
Show Gist options
  • Save radar/b1fa1e1cb5dc08ec9e47 to your computer and use it in GitHub Desktop.
Save radar/b1fa1e1cb5dc08ec9e47 to your computer and use it in GitHub Desktop.
def current_user
begin
@current_user ||= User.find(session[:user_id]) if session[:user_id]
rescue ActiveRecord::RecordNotFound
reset_session
end
end
helper_method :current_user
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment