gitlab-org--gitlab-foss/app/services/ci/change_variables_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
237 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Ci
class ChangeVariablesService < BaseContainerService
def execute
container.update(params)
end
end
end
::Ci::ChangeVariablesService.prepend_mod_with('Ci::ChangeVariablesService')