Files
turbovault-app/app/helpers/games_helper.rb
2026-03-28 19:24:29 -04:00

13 lines
304 B
Ruby

module GamesHelper
def filter_params_for_sort(sort_value)
{
sort: sort_value,
search: params[:search],
platform_id: params[:platform_id],
genre_id: params[:genre_id],
format: params[:format],
completion_status: params[:completion_status]
}.compact
end
end