Skip to content

Instantly share code, notes, and snippets.

@jmeirow
Created September 1, 2012 18:16
Show Gist options
  • Save jmeirow/3582246 to your computer and use it in GitHub Desktop.
Save jmeirow/3582246 to your computer and use it in GitHub Desktop.
Example
def current_club
if session[:user_id].nil?
@club = Club.find(1)
else
Club.find(current_member.club_id)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment