Module: FlexibleContentHelper

Defined in:
app/helpers/flexible_content_helper.rb

Instance Method Summary collapse

Instance Method Details

#importable_locales(model, current_locale) ⇒ Object



2
3
4
5
6
# File 'app/helpers/flexible_content_helper.rb', line 2

def importable_locales(model, current_locale)
  Udongo.config.i18n.app.locales.select do |lo|
    lo.to_s != current_locale.to_s && model.content_rows.by_locale(lo).any?
  end
end