21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-29 05:38:48 +02:00
chexpire/app/helpers/application_helper.rb

10 lines
219 B
Ruby
Raw Normal View History

2018-05-23 10:32:04 +02:00
module ApplicationHelper
def format_utc(time, format: :default)
l(time.utc, format: format)
end
2018-06-13 20:28:37 +02:00
def available_locales_collection
I18n.available_locales.map { |k| [t("shared.locales.#{k}"), k] }
2018-06-13 20:28:37 +02:00
end
2018-05-23 10:32:04 +02:00
end