Remove array params

This commit is contained in:
Jose Farias
2024-10-16 16:43:20 -06:00
parent f4b5210ca1
commit a77a257129
+1 -1
View File
@@ -21,6 +21,6 @@ module FiltersHelper
# `#bubble_filter_params` is memoized to avoid spam in logs about unpermitted params
def bubble_filter_params
@bubble_filter_params ||= params.permit :order_by, :status, :term, :assignee_ids, :tag_ids, assignee_ids: [], tag_ids: []
@bubble_filter_params ||= params.permit :order_by, :status, :term, :assignee_ids, :tag_ids
end
end