Style arguments forwarding

This commit is contained in:
Maikel Linke
2026-01-19 10:55:24 +11:00
parent 26b39d6626
commit fdc775ae6d
4 changed files with 8 additions and 8 deletions

View File

@@ -392,9 +392,9 @@ module Reporting
end
end
def filter_scope(*args)
def filter_scope(*)
chain_to_scope do
where(*args)
where(*)
end
end
end