class Contentful::Management::SpaceUserMethodsFactory
Attributes
Public Class Methods
Source
# File lib/contentful/management/space_user_methods_factory.rb, line 12 def initialize(space) @space = space end
Public Instance Methods
Source
# File lib/contentful/management/space_user_methods_factory.rb, line 20 def all(params = {}) User.all(space.client, space.id, nil, params, nil) end
Source
# File lib/contentful/management/space_user_methods_factory.rb, line 16 def find(id) User.find(space.client, space.id, nil, id) end