locomotivecms/engine

View on GitHub
app/helpers/locomotive/my_account_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Locomotive
  module MyAccountHelper

    def options_for_locale
      Locomotive.config.locales.map do |locale|
        [
          I18n.t("locomotive.locales.#{locale}"),
          locale,
          {}
        ]
      end
    end

  end
end