about summary refs log tree commit diff
path: root/app/helpers/routing_helper.rb
blob: 101382604431eeca3418409d6e3c44fe8f7d3f2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module RoutingHelper
  extend ActiveSupport::Concern
  include Rails.application.routes.url_helpers
  include ActionView::Helpers::AssetTagHelper

  included do
    def default_url_options
      ActionMailer::Base.default_url_options
    end
  end

  def full_asset_url(source)
    File.join(root_url, ActionController::Base.helpers.asset_url(source))
  end
end