mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Ignore suspect users that were migrated or users who were created more than six months ago (#9205)
This commit is contained in:
@@ -9,15 +9,19 @@ module Jobs
|
||||
return if SiteSetting.must_approve_users
|
||||
|
||||
users = User
|
||||
.distinct
|
||||
.activated
|
||||
.human_users
|
||||
.where(approved: false)
|
||||
.joins(:user_profile, :user_stat)
|
||||
.where("users.created_at <= ?", 1.day.ago)
|
||||
.where("users.created_at <= ? AND users.created_at >= ?", 1.day.ago, 6.months.ago)
|
||||
.where("LENGTH(COALESCE(user_profiles.bio_raw, user_profiles.website, '')) > 0")
|
||||
.where("user_stats.posts_read_count <= 1 AND user_stats.topics_entered <= 1")
|
||||
.joins("LEFT OUTER JOIN reviewables r ON r.target_id = users.id AND r.target_type = 'User'")
|
||||
.where('r.id IS NULL')
|
||||
.joins('LEFT OUTER JOIN user_custom_fields ucf ON users.id = ucf.user_id')
|
||||
.group('users.id, ucf.id')
|
||||
.having('ucf.id IS NULL OR NOT bool_or(ucf.name = ?)', 'import_id')
|
||||
.limit(10)
|
||||
|
||||
users.each do |user|
|
||||
|
||||
Reference in New Issue
Block a user