lib/pushbullet/chats.rb in pushbullet_client-0.0.5 vs lib/pushbullet/chats.rb in pushbullet_client-0.0.6
- old
+ new
@@ -1,8 +1,9 @@
module Pushbullet
module Chats
- def chats
+ def chats(params: {}, cursor: nil)
+ params = process_cursor(cursor, params: params)
path = 'chats'
- authorise_and_send(http_method: :get, path: path)
+ authorise_and_send(http_method: :get, path: path, params: params)
end
end
end