Sha256: 7690524374a44fd1d8ef3f42a9190844f6ef87085b719cc2c370a502e62ff7cb
Contents?: true
Size: 579 Bytes
Versions: 26
Compression:
Stored size: 579 Bytes
Contents
module FbGraph module Connections module Notes def notes(options = {}) notes = self.connection(:notes, options) notes.map! do |note| Note.new(note.delete(: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.delete(:id), options.merge(note).merge( :access_token => options[:access_token] || self.access_token )) end end end end
Version data entries
26 entries across 26 versions & 2 rubygems