update: splat keyword arguments so ruby 2.7 is happy

See for example https://piechowski.io/post/last-arg-keyword-deprecated-ruby-2-7/
This commit is contained in:
Azul 2023-04-06 20:46:35 +02:00
parent 42cbae2d2b
commit 79ad2ee8a5
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class Me::PagesController < Me::BaseController
if request.xhr?
# note: pagination_params is used just for defaults,
# normal pagination is done through @path.
@pages = Page.paginate_by_path(@path, options_for_me(method: :sphinx), pagination_params)
@pages = Page.paginate_by_path(@path, options_for_me(method: :sphinx), **pagination_params)
end
render template: 'common/pages/search/index', locals: { columns: :updated_with_owner }
end