8 lines
132 B
Ruby
8 lines
132 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class UpdateExternalCacheJob < ApplicationJob
|
||
|
def perform(image)
|
||
|
image.update_cache!
|
||
|
end
|
||
|
end
|