]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user.rb
Remove the author_name field from notes
[rails.git] / app / models / user.rb
index 6ea4de9be6ba92f8f5b7b3f4652ca182163abd9f..33f01c06bd972bbcee063c05ff5886ecc31e5afc 100644 (file)
@@ -12,6 +12,8 @@ class User < ActiveRecord::Base
   has_many :tokens, :class_name => "UserToken"
   has_many :preferences, :class_name => "UserPreference"
   has_many :changesets, :order => 'created_at DESC'
+  has_many :note_comments, :foreign_key => :author_id
+  has_many :notes, :through => :note_comments
 
   has_many :client_applications
   has_many :oauth_tokens, :class_name => "OauthToken", :order => "authorized_at desc", :include => [:client_application]