Sha256: 4f702dd20f571ec710dad7f67770a159b84bfcb58bc99caac5545128feeb7240
Contents?: true
Size: 514 Bytes
Versions: 33
Compression:
Stored size: 514 Bytes
Contents
require_relative 'client_association_methods_factory' module Contentful module Management # Wrapper for Entry API for usage from within Client # @private class ClientEntryMethodsFactory include Contentful::Management::ClientAssociationMethodsFactory def create(content_type, attributes) associated_class.create(client, @space_id, @environment_id, attributes.merge(content_type: content_type)) end def new(*) fail 'Not supported' end end end end
Version data entries
33 entries across 33 versions & 1 rubygems