Skip to content

Instantly share code, notes, and snippets.

@bnhansn
Created October 22, 2016 14:06
Show Gist options
  • Save bnhansn/5650b2e5d823221e05aa762f5c8aed82 to your computer and use it in GitHub Desktop.
Save bnhansn/5650b2e5d823221e05aa762f5c8aed82 to your computer and use it in GitHub Desktop.
defmodule Sling.PaginationHelpers do
def pagination(page) do
%{
page_number: page.page_number,
page_size: page.page_size,
total_pages: page.total_pages,
total_entries: page.total_entries
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment