2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 18:10:30 +01:00
|
|
|
module RoutingHelper
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include Rails.application.routes.url_helpers
|
2016-09-04 14:04:26 +02:00
|
|
|
include ActionView::Helpers::AssetTagHelper
|
2016-02-22 18:10:30 +01:00
|
|
|
|
|
|
|
included do
|
|
|
|
def default_url_options
|
|
|
|
ActionMailer::Base.default_url_options
|
|
|
|
end
|
|
|
|
end
|
2016-09-04 14:04:26 +02:00
|
|
|
|
|
|
|
def full_asset_url(source)
|
2017-05-03 11:31:21 +02:00
|
|
|
Rails.configuration.x.use_s3 ? source : URI.join(root_url, ActionController::Base.helpers.asset_url(source)).to_s
|
2016-09-04 14:04:26 +02:00
|
|
|
end
|
2016-02-22 18:10:30 +01:00
|
|
|
end
|