21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-15 06:58:39 +02:00
chexpire/app/helpers/application_helper.rb

10 lines
219 B
Ruby

module ApplicationHelper
def format_utc(time, format: :default)
l(time.utc, format: format)
end
def available_locales_collection
I18n.available_locales.map { |k| [t("shared.locales.#{k}"), k] }
end
end