about summary refs log tree commit diff
path: root/app/helpers/accounts_helper.rb
blob: 17c7b4b825abfd716761bf63770200b2fb140507 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module AccountsHelper
  def pagination_options
    {
      previous_label: safe_join([fa_icon('chevron-left'), 'Prev'], ' '),
      next_label: safe_join(['Next', fa_icon('chevron-right')], ' '),
      inner_window: 1,
      outer_window: 0,
    }
  end
end