Files
moreminimore-chat/app/jobs/internal/check_new_versions_job.rb
2026-08-15 13:23:03 +07:00

10 lines
257 B
Ruby

class Internal::CheckNewVersionsJob < ApplicationJob
queue_as :scheduled_jobs
def perform
# Version checks are intentionally local-only in the private fork.
end
end
Internal::CheckNewVersionsJob.prepend_mod_with('Internal::CheckNewVersionsJob')