Module: FbGraph::Connections::Noreply

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

Instance Method Summary collapse

Instance Method Details

#noreply(options = {}) ⇒ Object



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

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