Add login filter
This commit is contained in:
parent
b487ffc5da
commit
bac93f93a0
1 changed files with 9 additions and 0 deletions
|
@ -5,4 +5,13 @@ class ApplicationController < ActionController::Base
|
|||
def current_user
|
||||
@current_user ||= User.find(session[:user_id]) if session[:user_id]
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def require_login
|
||||
unless current_user
|
||||
flash[:error] = 'You must be logged in to access this page'
|
||||
redirect_to root_path
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue