Module: FbGraph::Connections::Participants

Included in:
Thread
Defined in:
lib/fb_graph/connections/participants.rb

Instance Method Summary collapse

Instance Method Details

#participants(options = {}) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/fb_graph/connections/participants.rb', line 4

def participants(options = {})
  users = if @_participants_ && options.blank?
    self.connection(:participants, options.merge(:cached_collection => @_participants_))
  else
    self.connection(:participants, options)
  end
  users.map! do |user|
    User.new(user[:id], user.merge(
      :access_token => options[:access_token] || self.access_token
    ))
  end
end