I noticed while working on https://github.com/rubyforgood/human-essentials/pull/3623 that you are are able to pass true into filterrific and it will be handled how you expect, however when you pass in false as a param it does not make it to the scope because it is filtered out by .present? and .blank? checks. I updated the param_set to take this into account and updated the spec to test it.
I noticed while working on https://github.com/rubyforgood/human-essentials/pull/3623 that you are are able to pass
true
into filterrific and it will be handled how you expect, however when you pass infalse
as a param it does not make it to the scope because it is filtered out by.present?
and.blank?
checks. I updated the param_set to take this into account and updated the spec to test it.