Skip to content

Instantly share code, notes, and snippets.

@olly
Created May 19, 2014 09:20
Show Gist options
  • Save olly/f005a4d0ff3207a8afcf to your computer and use it in GitHub Desktop.
Save olly/f005a4d0ff3207a8afcf to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
concerning :Authentication do
included do
before_action :authenticate_user!
end
private
def authenticate_user!
unless current_user
redirect_to root_path
end
end
def current_user
@current_user ||= User.find_by_id(session[:user_id])
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment