notebook/app/services/autocomplete/location_autocomplete_service.rb
2020-04-04 01:40:20 -05:00

12 lines
263 B
Ruby

module Autocomplete
class LocationAutocompleteService < AutocompleteService
def self.for_field_label(field_label)
case field_label.downcase
when 'type_of', 'type'
t('location_types')
else
[]
end.uniq
end
end
end