10 lines
237 B
Ruby
10 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GitlabShellWorker
|
|
include ApplicationWorker
|
|
include Gitlab::ShellAdapter
|
|
|
|
def perform(action, *arg)
|
|
gitlab_shell.__send__(action, *arg) # rubocop:disable GitlabSecurity/PublicSend
|
|
end
|
|
end
|