dawarich/app/jobs/app_version_checking_job.rb
2025-07-27 01:08:29 +02:00

12 lines
254 B
Ruby

# frozen_string_literal: true
class AppVersionCheckingJob < ApplicationJob
queue_as :app_version_checking
sidekiq_options retry: false
def perform
Rails.cache.delete(CheckAppVersion::VERSION_CACHE_KEY)
CheckAppVersion.new.call
end
end