mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-28 02:50:14 -05:00
8 lines
153 B
Ruby
8 lines
153 B
Ruby
|
# frozen_string_literal: true
|
||
|
Kaminari.configure do |config|
|
||
|
config.default_per_page = 40
|
||
|
config.window = 1
|
||
|
config.left = 3
|
||
|
config.right = 1
|
||
|
end
|