Welcome to mirror list, hosted at ThFree Co, Russian Federation.

change_variables_service.rb « ci « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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')