Method: PuzzlyApiPlugin::Collection#identities

Defined in:
lib/puzzly_api_plugin/collection/collection.rb

#identitiesObject



5
6
7
8
9
10
11
12
13
14
# File 'lib/puzzly_api_plugin/collection/collection.rb', line 5

def identities
  identities = []

  each do |_id, |
    identity = .to_identity
    identities.push identity
  end

  identities
end