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

- old
+ new

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