Module: FbGraph::Connections::Maybe
- Included in:
- Event
- Defined in:
- lib/fb_graph/connections/maybe.rb
Instance Method Summary (collapse)
- - (Object) maybe(options = {})
- - (Object) maybe!(options = {})
- - (Boolean) maybe?(user, options = {})
Instance Method Details
- (Object) maybe(options = {})
4 5 6 7 8 9 10 11 |
# File 'lib/fb_graph/connections/maybe.rb', line 4 def maybe( = {}) members = self.connection :maybe, members.map! do |member| User.new member[:id], member.merge( :access_token => [:access_token] || self.access_token ) end end |
- (Object) maybe!(options = {})
20 21 22 |
# File 'lib/fb_graph/connections/maybe.rb', line 20 def maybe!( = {}) post .merge(:connection => :maybe) end |
- (Boolean) maybe?(user, options = {})
13 14 15 16 17 18 |
# File 'lib/fb_graph/connections/maybe.rb', line 13 def maybe?(user, = {}) member = self.connection( :maybe, .merge(:connection_scope => user.identifier) ).first member.present? end |