Skip to content

Instantly share code, notes, and snippets.

@Chryus
Last active February 15, 2017 16:39
Show Gist options
  • Save Chryus/cd9f8bc9e3267ea04e426035a526d68f to your computer and use it in GitHub Desktop.
Save Chryus/cd9f8bc9e3267ea04e426035a526d68f to your computer and use it in GitHub Desktop.
class User < ActiveRecord::Base
# ...
has_many :upvotes
has_many :graffiti, through: :upvotes, source: :upvotable, source_type: "Graffiti"
has_many :uploads, through: :upvotes, source: :upvotable, source_type: "Upload"
# ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment