Module: FbGraph::Connections::Attending
- Included in:
- Event
- Defined in:
- lib/fb_graph/connections/attending.rb
Instance Method Summary collapse
- #attend!(options = {}) ⇒ Object (also: #attending!)
- #attending(options = {}) ⇒ Object
- #attending?(user, options = {}) ⇒ Boolean
Instance Method Details
#attend!(options = {}) ⇒ Object Also known as: attending!
20 21 22 |
# File 'lib/fb_graph/connections/attending.rb', line 20 def attend!( = {}) post .merge(:connection => :attending) end |
#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[:id], member.merge( :access_token => [:access_token] || self.access_token ) end end |
#attending?(user, options = {}) ⇒ Boolean
13 14 15 16 17 18 |
# File 'lib/fb_graph/connections/attending.rb', line 13 def attending?(user, = {}) member = self.connection( :attending, .merge(:connection_scope => user.identifier) ).first member.present? end |