gitlabhq/app/workers/gitlab_shell_worker.rb
2013-02-11 19:27:26 +02:00

11 lines
185 B
Ruby

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