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

update_service.rb « clusters « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98fdeec4fb1ca59aee9060332f10283fabc3e1fc (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Clusters
  class UpdateService < BaseService
    def execute(cluster)
      cluster.update(params)
    end
  end
end