notebook/app/services/autocomplete/creature_autocomplete_service.rb
2020-04-05 13:45:16 -05:00

12 lines
272 B
Ruby

module Autocomplete
class CreatureAutocompleteService < AutocompleteService
def self.for_field_label(field_label)
case field_label.downcase
when 'type', 'type of creature'
t('creature_types')
else
[]
end.uniq
end
end
end