Sha256: 79b583a0849e9d0144488fcdbbf0783995663c06288d0bc677b80f2b7e5749a5
Contents?: true
Size: 563 Bytes
Versions: 18
Compression:
Stored size: 563 Bytes
Contents
module FbGraph module Connections module Inbox def inbox(options = {}) threads = self.connection(:inbox, options) threads.map! do |thread| if thread[:message] 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
18 entries across 18 versions & 1 rubygems