Created
May 19, 2014 09:20
-
-
Save olly/f005a4d0ff3207a8afcf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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