BathHacked/energy-sparks

View on GitHub
app/helpers/default_url_options_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DefaultUrlOptionsHelper
  def default_url_options
    host = I18n.locale == :cy ? ENV['WELSH_APPLICATION_HOST'] : ENV['APPLICATION_HOST']
    host ? { host: host } : super
  end
end