2013-05-16 19:50:18 +01:00
|
|
|
module Modules::Models::UrlHelper
|
|
|
|
def default_url_options
|
|
|
|
host ||= EventLog.current_controller.request.host_with_port rescue ::Rosa::Application.config.action_mailer.default_url_options[:host]
|
|
|
|
protocol ||= APP_CONFIG['mailer_https_url'] ? 'https' : 'http' rescue 'http'
|
2014-01-21 04:51:49 +00:00
|
|
|
{host: host, protocol: protocol}
|
2013-05-16 19:50:18 +01:00
|
|
|
end
|
|
|
|
end
|