mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
10 lines
155 B
Ruby
10 lines
155 B
Ruby
class RepositoryArchiveCacheWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: :default
|
|
|
|
def perform
|
|
Repository.clean_old_archives
|
|
end
|
|
end
|