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