Sha256: 1a0447e37907ac6468f8721d1b197a62dabd2353b872e7574c6978142b8ff516
Contents?: true
Size: 505 Bytes
Versions: 37
Compression:
Stored size: 505 Bytes
Contents
module FbGraph module Connections module Notifications def notifications(options = {}) notifications = self.connection :notifications, options notifications.map! do |notification| Notification.new notification[:id], notification.merge( :access_token => options[:access_token] || self.access_token ) end end def notification!(options = {}) post options.merge(:connection => :notifications) end end end end
Version data entries
37 entries across 37 versions & 1 rubygems