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

9 lines
206 B
Ruby
Raw Normal View History

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