X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4e138f6bf3677f220e2d2d76ec1bd9004c272ab4..a20e28809f5ca1e3f3579faeaf118fff3ecc4994:/app/models/user.rb diff --git a/app/models/user.rb b/app/models/user.rb index 1cd8c6d89..2d51b5af5 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -73,6 +73,12 @@ class User < ActiveRecord::Base has_many :roles, :class_name => "UserRole" + 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]) } scope :active, -> { where(:status => %w[active confirmed]) } scope :identifiable, -> { where(:data_public => true) }