Sha256: 523c7696950b131151aa36f667ac81843dda212d6b50cf0fc28bfbca9caae68f
Contents?: true
Size: 552 Bytes
Versions: 33
Compression:
Stored size: 552 Bytes
Contents
require_relative 'client_association_methods_factory' module Contentful module Management # Wrapper for ApiKey API for usage from within Client # @private class ClientApiKeyMethodsFactory include Contentful::Management::ClientAssociationMethodsFactory def new(*) fail 'Not supported' end def find(resource_id) associated_class.find(client, @space_id, resource_id) end def create(attributes) associated_class.create(client, @space_id, attributes) end end end end
Version data entries
33 entries across 33 versions & 1 rubygems