5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-30 06:36:07 +00:00
panel/app/models/metadata_lang.rb

21 lines
329 B
Ruby

# frozen_string_literal: true
# Un campo de idioma
class MetadataLang < MetadataTemplate
def default_value
super || I18n.locale
end
def value_from_document
document.collection.label.to_sym
end
def value
self[:value] ||= value_from_document || default_value
end
def values
site.locales
end
end