Sha256: 3124678a79e37ea1222a2b9124ec3a80f1cc574c5771b290e9a9dcde62f7af83

Contents?: true

Size: 334 Bytes

Versions: 4

Compression:

Stored size: 334 Bytes

Contents

module FbGraph
  module Connections
    module Senders
      def senders(options = {})
        users = self.connection(:senders, options)
        users.map! do |user|
          User.new(user[:id], user.merge(
            :access_token => options[:access_token] || self.access_token
          ))
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fb_graph-2.2.6 lib/fb_graph/connections/senders.rb
fb_graph-2.2.5 lib/fb_graph/connections/senders.rb
fb_graph-2.2.4 lib/fb_graph/connections/senders.rb
fb_graph-2.2.3 lib/fb_graph/connections/senders.rb