Sha256: 1c84ad5b924cd97efa1d62d444d7603fd53f6367ec8765936c5df1cec0e29d7d
Contents?: true
Size: 561 Bytes
Versions: 38
Compression:
Stored size: 561 Bytes
Contents
module FbGraph module Connections module Inbox def inbox(options = {}) threads = self.connection :inbox, options threads.map! do |thread| if thread[:comments] Thread::BeforeTransition.new thread[:id], thread.merge( :access_token => options[:access_token] || self.access_token ) else Thread.new thread[:id], thread.merge( :access_token => options[:access_token] || self.access_token ) end end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems