Module: BookingSync::Pagination::ClassMethods

Defined in:
lib/bookingsync/pagination.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) find_all_across_pages(options = {})



8
9
10
11
12
# File 'lib/bookingsync/pagination.rb', line 8

def find_all_across_pages(options = {})
  records = []
  each(options) { |record| records << record }
  records
end

- (Object) find_all_across_pages_from(time)

This only is usefull for bookings, but should be safely ignored by other classes



15
16
17
# File 'lib/bookingsync/pagination.rb', line 15

def find_all_across_pages_from(time)
  find_all_across_pages(:params => { :from => time.utc.strftime("%Y%m%d") })
end