X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7d92ec704786c2d887e1946f25746d6d70ee7ea8..ba5107ebb543a396fc78069c75c431e4d3887ee1:/app/models/user.rb diff --git a/app/models/user.rb b/app/models/user.rb index 6ea4de9be..33f01c06b 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]