Created
April 20, 2012 04:59
-
-
Save kelhusseiny/2426123 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
protected | |
def authenticate_user | |
if session[:user_id] | |
# set current user object to @current_user object variable | |
@current_user = User.find session[:user_id] | |
return true | |
else | |
redirect_to(:controller => 'sessions', :action => 'login') | |
return false | |
end | |
end | |
def save_login_state | |
if session[:user_id] | |
redirect_to(:controller => 'sessions', :action => 'home') | |
return false | |
else | |
return true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment