Sha256: a654a16a2f6ee8f2e3216cf89602e08b5d1efe121a9c901fa725ec5e98fe804d
Contents?: true
Size: 560 Bytes
Versions: 59
Compression:
Stored size: 560 Bytes
Contents
module FbGraph module Connections module Notes def notes(options = {}) notes = self.connection :notes, options notes.map! do |note| Note.new note[:id], note.merge( :access_token => options[:access_token] || self.access_token ) end end def note!(options = {}) note = post options.merge(:connection => :notes) Note.new note[:id], options.merge(note).merge( :access_token => options[:access_token] || self.access_token ) end end end end
Version data entries
59 entries across 59 versions & 1 rubygems