mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
427d54b2b0
Zeitwerk simplifies working with dependencies in dev and makes it easier reloading class chains. We no longer need to use Rails "require_dependency" anywhere and instead can just use standard Ruby patterns to require files. This is a far reaching change and we expect some followups here.
29 lines
583 B
Ruby
29 lines
583 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
|
|
class CreateAvatarThumbnails < ::Jobs::Base
|
|
sidekiq_options queue: 'low'
|
|
|
|
def execute(args)
|
|
return if Rails.env.test?
|
|
upload_id = args[:upload_id]
|
|
|
|
raise Discourse::InvalidParameters.new(:upload_id) if upload_id.blank?
|
|
|
|
return unless upload = Upload.find_by(id: upload_id)
|
|
|
|
Discourse.avatar_sizes.each do |size|
|
|
OptimizedImage.create_for(
|
|
upload,
|
|
size,
|
|
size,
|
|
allow_animation: SiteSetting.allow_animated_avatars
|
|
)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|