Module: FbGraph::Connections::Declined

Included in:
Event
Defined in:
lib/fb_graph/connections/declined.rb

Instance Method Summary collapse

Instance Method Details

#declined(options = {}) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/fb_graph/connections/declined.rb', line 4

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

#declined!(options = {}) ⇒ Object



13
14
15
# File 'lib/fb_graph/connections/declined.rb', line 13

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