Sha256: 47132341a20a1702ea5d5b3ce37053965a3236d75a513764786e0981ed216705
Contents?: true
Size: 566 Bytes
Versions: 18
Compression:
Stored size: 566 Bytes
Contents
module FbGraph module Connections module Outbox def outbox(options = {}) threads = self.connection(:outbox, 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