10 lines
257 B
Ruby
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')
|