11 lines
237 B
Ruby
11 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class ChangeVariablesService < BaseContainerService
|
|
def execute
|
|
container.update(params)
|
|
end
|
|
end
|
|
end
|
|
|
|
::Ci::ChangeVariablesService.prepend_mod_with('Ci::ChangeVariablesService')
|