Sha256: 6b380882297f2ed03438941ce12f0ec930fa9ed01a16a6b80422079215cd0873

Contents?: true

Size: 454 Bytes

Versions: 26

Compression:

Stored size: 454 Bytes

Contents

module FbGraph
  module Connections
    module Declined
      def declined(options = {})
        members = self.connection(:declined, options)
        members.map! do |member|
          User.new(member.delete(:id), member.merge(
            :access_token => options[:access_token] || self.access_token
          ))
        end
      end

      def declined!(options = {})
        post(options.merge(:connection => 'declined'))
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
fb_graph-0.7.3 lib/fb_graph/connections/declined.rb
fb_graph-0.7.2 lib/fb_graph/connections/declined.rb
fb_graph-0.7.1 lib/fb_graph/connections/declined.rb
fb_graph-0.7.0 lib/fb_graph/connections/declined.rb
fb_graph-0.6.0 lib/fb_graph/connections/declined.rb
fb_graph-0.5.0 lib/fb_graph/connections/declined.rb