2020-10-24 23:57:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Ci
|
|
|
|
class ChangeVariablesService < BaseContainerService
|
|
|
|
def execute
|
|
|
|
container.update(params)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
::Ci::ChangeVariablesService.prepend_mod_with('Ci::ChangeVariablesService')
|