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: 989218e32a290d4db7696ed0e42e274aa0262735 (plain)
1
2
3
4
5
6
7
module Clusters
  class UpdateService < BaseService
    def execute(cluster)
      cluster.update(params)
    end
  end
end