Sha256: 298bed20177053ffc35b6dc71980f8ae33436040691a9f18a69a7698a36620ec
Contents?: true
Size: 359 Bytes
Versions: 26
Compression:
Stored size: 359 Bytes
Contents
module Locomotive module API module Helpers module PaginationHelper def add_pagination_header(collection) header 'X-Total-Pages', collection.num_pages.to_s header 'X-Per-Page', collection.limit_value.to_s header 'X-Total-Entries', collection.total_count.to_s end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems