class Contentful::Management::SpaceUserMethodsFactory
Attributes
space[R]
Public Class Methods
new(space)
click to toggle source
# File lib/contentful/management/space_user_methods_factory.rb, line 10 def initialize(space) @space = space end
Public Instance Methods
all(params = {})
click to toggle source
# File lib/contentful/management/space_user_methods_factory.rb, line 18 def all(params = {}) User.all(space.client, space.id, nil, params, nil) end
find(id)
click to toggle source
# File lib/contentful/management/space_user_methods_factory.rb, line 14 def find(id) User.find(space.client, space.id, nil, id) end