Websites/app/jobs/update_external_cache_job.rb

10 lines
158 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UpdateExternalCacheJob < ApplicationJob
queue_as :low_priority
def perform(image)
image.update_cache!
end
end