summaryrefslogtreecommitdiff
path: root/app/workers/gitlab_shell_worker.rb
blob: a0028e41332a808228762ca7b176ad905bc0d9ef (plain)
1
2
3
4
5
6
7
8
class GitlabShellWorker
  include ApplicationWorker
  include Gitlab::ShellAdapter

  def perform(action, *arg)
    gitlab_shell.__send__(action, *arg) # rubocop:disable GitlabSecurity/PublicSend
  end
end