We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
list_canvas()
Hey, I have been using this gem and with their docs and I need to be able to get canvas that are n pages deep. I see currently the gem does not support pagination and proposed this code change on https://github.com/jonallured/appboy/blob/master/lib/appboy/rest/list_canvas.rb
n
module Appboy module REST class ListCanvas < Base attr_reader :app_group_id, :sort_direction, :include_archived, :page def initialize(app_group_id, options = {}) @app_group_id = app_group_id @sort_direction = options[:sort_direction] @include_archived = options[:include_archived] @page = options[:page] end def perform http.get '/canvas/list', { app_group_id: app_group_id, sort_direction: sort_direction, include_archived: include_archived, page: page }.compact end end end end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey, I have been using this gem and with their docs and I need to be able to get canvas that are
n
pages deep. I see currently the gem does not support pagination and proposed this code change on https://github.com/jonallured/appboy/blob/master/lib/appboy/rest/list_canvas.rbThe text was updated successfully, but these errors were encountered: