discourse/app/jobs/scheduled/create_missing_avatars.rb

19 lines
430 B
Ruby
Raw Normal View History

module Jobs
class CreateMissingAvatars < Jobs::Scheduled
every 1.hour
def execute(args)
UserAvatar.where(system_upload_id: nil).find_each do |a|
a.update_system_avatar!
end
2014-05-27 18:46:17 +08:00
# backfill in batches 1000 an hour
User.where(uploaded_avatar_id: nil)
.order("last_posted_at desc")
2014-05-27 20:17:04 +08:00
.limit(1000).each do |u|
2014-05-27 18:46:17 +08:00
u.refresh_avatar
u.save
end
end
end
end