gitlabhq/app/workers/gitlab_shell_worker.rb

11 lines
182 B
Ruby

class GitoliteWorker
include Sidekiq::Worker
include Gitolited
sidekiq_options queue: :gitlab_shell
def perform(action, *arg)
gitlab_shell.send(action, *arg)
end
end