X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8ed6d80b0d254fbbaf0f64d08041c97c8da671d0..7f598ab412674ce5a78da98c54aa2fe2e4a05792:/app/models/user.rb diff --git a/app/models/user.rb b/app/models/user.rb index 2e312119f..778afbf8a 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -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]