Skip to content

Instantly share code, notes, and snippets.

@hmans
Created January 23, 2009 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmans/51093 to your computer and use it in GitHub Desktop.
Save hmans/51093 to your computer and use it in GitHub Desktop.
def current_user_session
return @current_user_session if defined?(@current_user_session)
@current_user_session = UserSession.find
end
kürzer:
def current_user_session
@current_user_session ||= UserSession.find
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment