4
5
6
7
8
9
10
11
|
# File 'lib/fb_graph/connections/threads.rb', line 4
def threads(options = {})
threads = self.connection :threads, options
threads.map! do |thread|
Thread.new thread[:id], thread.merge(
:access_token => options[:access_token] || self.access_token
)
end
end
|