debian-mirror-gitlab/app/workers/gitlab_shell_worker.rb

11 lines
237 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class GitlabShellWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2014-09-02 18:07:02 +05:30
include Gitlab::ShellAdapter
def perform(action, *arg)
2018-03-17 18:26:18 +05:30
gitlab_shell.__send__(action, *arg) # rubocop:disable GitlabSecurity/PublicSend
2014-09-02 18:07:02 +05:30
end
end