Sha256: 7f3e9c858bf2ff9f54d9e97d5aec89e00bdac1802f1ddb715d66adfc9829a8ff
Contents?: true
Size: 554 Bytes
Versions: 33
Compression:
Stored size: 554 Bytes
Contents
require_relative 'client_association_methods_factory' module Contentful module Management # Wrapper for Webhook API for usage from within Client # @private class ClientWebhookMethodsFactory 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