2020-07-30 11:09:40 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Ci
|
|
|
|
class ChangeVariablesService < BaseContainerService
|
|
|
|
def execute
|
|
|
|
container.update(params)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
::Ci::ChangeVariablesService.prepend_mod_with('Ci::ChangeVariablesService')
|