Method: ZendeskAPI::Collection#all!

Defined in:
lib/zendesk_api/collection.rb

#all!(start_page = , &block) ⇒ Object

Calls #each on every page with the passed in block

Parameters:

  • block (Block)

    Passed to #each



191
192
193
# File 'lib/zendesk_api/collection.rb', line 191

def all!(start_page = @options["page"], &block)
  _all(start_page, :bang, &block)
end