Skip to content

Instantly share code, notes, and snippets.

@darrencauthon
Forked from jmeirow/application_controller.rb
Created September 1, 2012 19:35
Show Gist options
  • Select an option

  • Save darrencauthon/3584698 to your computer and use it in GitHub Desktop.

Select an option

Save darrencauthon/3584698 to your computer and use it in GitHub Desktop.
Example
def current_club
club_id = current_member ? current_member.club_id : 1
@club ||= Club.find(club_id)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment