Created
November 9, 2010 17:05
-
-
Save matthuhiggins/669396 to your computer and use it in GitHub Desktop.
matter of style
This file contains hidden or 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 ProfileController < ActionController::Base | |
private | |
def current_user | |
@current_user ||= User.find_by_username(session[:username]) if session[:username] | |
end | |
helper_method :current_user | |
end |
This file contains hidden or 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 ProfileController < ActionController::Base | |
before_filter :set_current_user | |
private | |
def set_current_user | |
@current_user = User.find_by_username(session[:username]) if session[:username] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment