Class: Antaeus::Resources::Group

Inherits:
Antaeus::Resource show all
Defined in:
lib/antaeus-sdk/resources/group.rb

Instance Attribute Summary

Attributes inherited from Antaeus::Resource

#client, #errors

Instance Method Summary collapse

Methods inherited from Antaeus::Resource

#<=>, all, delayed_property, #destroy, #fresh?, gen_property_methods, get, human, i18n_key, #id, immutable, #immutable?, immutable?, #initialize, #model_name, #new?, param_key, path, path_for, #path_for, paths, #paths, #persisted?, properties, property, #reload, route_key, #save, search, singular_route_key, #tainted?, #to_key, #to_model, #to_param, #update, where

Constructor Details

This class inherits a constructor from Antaeus::Resource

Instance Method Details

#membersObject Also known as: users



9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/antaeus-sdk/resources/group.rb', line 9

def members
  ResourceCollection.new(
    @client.get("#{path_for(:all)}/#{id}/members")['users'].collect do |record|
      User.new(
        entity: record,
        lazy: true,
        tainted: false,
        client: @client
      )
    end,
    type: Antaeus::Resources::User,
    client: @client
  )
end