gitlab-org--gitlab-foss/app/services/clusters/update_service.rb

10 lines
155 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Clusters
class UpdateService < BaseService
def execute(cluster)
cluster.update(params)
end
end
end