Sha256: b631272e25d87b7079d4884f95aa2ecea758731397c2fc655c71933a6f7c5c01
Contents?: true
Size: 516 Bytes
Versions: 38
Compression:
Stored size: 516 Bytes
Contents
module FbGraph module Connections module Participants 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 end end end
Version data entries
38 entries across 38 versions & 1 rubygems