lib/pushbullet/devices.rb in pushbullet_client-0.0.5 vs lib/pushbullet/devices.rb in pushbullet_client-0.0.6

- old
+ new

@@ -1,8 +1,9 @@ module Pushbullet module Devices - def devices + def devices(params: {}, cursor: nil) + params = process_cursor(cursor, params: params) path = 'devices' - authorise_and_send(http_method: :get, path: path) + authorise_and_send(http_method: :get, path: path, params: params) end end end