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 10 11 |
# File 'lib/fb_graph/connections/attending.rb', line 4 def attending( = {}) members = self.connection(:attending, ) members.map! do |member| User.new(member.delete(:id), member.merge( :access_token => [:access_token] || self.access_token )) end end |
#attending!(options = {}) ⇒ Object
13 14 15 |
# File 'lib/fb_graph/connections/attending.rb', line 13 def attending!( = {}) post(.merge(:connection => 'attending')) end |