4
5
6
7
8
9
10
11
|
# File 'lib/fb_graph/connections/checkins.rb', line 4
def checkins(options = {})
checkins = self.connection :checkins, options
checkins.map! do |checkin|
Checkin.new checkin[:id], checkin.merge(
:access_token => options[:access_token] || self.access_token
)
end
end
|