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