summaryrefslogtreecommitdiffstats
path: root/app/helpers/queries_helper.rb
blob: 1c0b5957092b52d12b332489b3af3f86e6328bec (plain)
1
2
3
4
5
6
module QueriesHelper

  def operators_for_select(filter_type)
    Query.operators_by_filter_type[filter_type].collect {|o| [l(Query.operators[o]), o]}
  end
end