Module: FbGraph::Connections::Videos

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

Instance Method Summary collapse

Instance Method Details

#videos(options = {}) ⇒ Object



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

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