summaryrefslogtreecommitdiff
path: root/app/services/ci/change_variables_service.rb
blob: 7a68bd2e2b37f08e158a5b448043b1f855f86266 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Ci
  class ChangeVariablesService < BaseContainerService
    def execute
      container.update(params)
    end
  end
end

::Ci::ChangeVariablesService.prepend_mod_with('Ci::ChangeVariablesService')