6 lines
129 B
Ruby
6 lines
129 B
Ruby
class I18nContentTranslation < ApplicationRecord
|
|
def self.existing_locales
|
|
distinct.pluck(:locale).map(&:to_sym)
|
|
end
|
|
end
|