mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
283 B
Ruby
14 lines
283 B
Ruby
module Autocomplete
|
|
class LoreAutocompleteService < AutocompleteService
|
|
def self.for_field_label(field_label)
|
|
case field_label.downcase
|
|
when 'type'
|
|
t('lore_types')
|
|
when 'genre'
|
|
t('genres')
|
|
else
|
|
[]
|
|
end.uniq
|
|
end
|
|
end
|
|
end |