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