Module: FbGraph::Connections::Statuses

Included in:
Page, User
Defined in:
lib/fb_graph/connections/statuses.rb

Instance Method Summary collapse

Instance Method Details

#statuses(options = {}) ⇒ Object



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

def statuses(options = {})
  statuses = FbGraph::Collection.new(get(options.merge(:connection => 'statuses')))
  statuses.map! do |status|
    Status.new(status.delete(:id), status)
  end
end