X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d49922eb630abb73c7faffb650ab97b3c5d94c52..f3519e97819cc5a5e2c2f9931c7d565b8e5227c8:/app/models/user.rb?ds=sidebyside diff --git a/app/models/user.rb b/app/models/user.rb index 4a36b3e61..1c38ea1cc 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -26,7 +26,10 @@ class User < ActiveRecord::Base has_many :roles, :class_name => "UserRole" - has_many :issues + has_many :issues, :class_name => "Issue", :foreign_key => :reported_user_id + has_one :issue, :class_name => "Issue", :foreign_key => :updated_by + has_many :issue_comments + has_many :reports scope :visible, -> { where(:status => %w(pending active confirmed)) }