X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/81241b30835fe090ebc9f511d1954a5c511c94ca..facce9d0bb04ebdaa185c65eb8772aa7ff4db01f:/app/models/user.rb diff --git a/app/models/user.rb b/app/models/user.rb index 1cd8c6d89..c063b7c34 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -73,6 +73,11 @@ class User < ActiveRecord::Base has_many :roles, :class_name => "UserRole" + has_many :issues, :class_name => "Issue", :foreign_key => :reported_user_id + 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) }