Module: FbGraph::Connections::Attending

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

Instance Method Summary collapse

Instance Method Details

#attending(options = {}) ⇒ Object



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

def attending(options = {})
  members = FbGraph::Collection.new(get(options.merge(:connection => 'attending')))
  members.map! do |member|
    User.new(member.delete(:id), member)
  end
end

#attending!(options = {}) ⇒ Object



11
12
13
# File 'lib/fb_graph/connections/attending.rb', line 11

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