Created
January 30, 2012 22:16
-
-
Save tammymakesthings/1707149 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I'm looking for a tidy named scope or class method I can define for a User | |
# that will give me all the Events for which the user hasn't yet registered. | |
class Event < ActiveRecord::Base | |
has_many :registrations | |
has_many :users, through: :registrations, as: :registrants | |
end | |
class Registration < ActiveRecord::Base | |
belongs_to :event | |
belongs_to :user | |
end | |
class User < ActiveRecord::Base | |
has_many :registrations | |
has_many :events, through: :registrations | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment