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