Sha256: 9d8f63d9337745cf7f5575157745969e6c6b6e456aef359a4710d536912900bf
Contents?: true
Size: 381 Bytes
Versions: 165
Compression:
Stored size: 381 Bytes
Contents
module Actions module Candlepin module Product class Update < Candlepin::Abstract input_format do param :owner param :name param :id end def run output[:response] = ::Katello::Resources::Candlepin::Product.update(input[:owner], name: input[:name], id: input[:id]) end end end end end
Version data entries
165 entries across 165 versions & 1 rubygems