Merge pull request #4668 from consul/official_level_search

Remove official level filter from advanced search
This commit is contained in:
Javi Martín
2021-09-14 13:18:55 +02:00
committed by GitHub
7 changed files with 203 additions and 343 deletions

View File

@@ -20,7 +20,7 @@ module Filterable
def allowed_filter?(filter, value)
return if value.blank?
["official_level", "date_range", "goal", "target"].include?(filter)
["date_range", "goal", "target"].include?(filter)
end
end
end