Skip to content

Instantly share code, notes, and snippets.

@zooniverse
Created March 30, 2011 20:34
Show Gist options
  • Save zooniverse/895236 to your computer and use it in GitHub Desktop.
Save zooniverse/895236 to your computer and use it in GitHub Desktop.
# Old
ship.current_voyage.groups.first.zooniverse_users.include?(self)
# New
ship.voyages.first.groups.where(:zooniverse_user_ids => self.id).count == 0 ? false : true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment