2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2016-03-12 23:36:38 +00:00
|
|
|
module Routing
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include Rails.application.routes.url_helpers
|
|
|
|
|
|
|
|
included do
|
|
|
|
def default_url_options
|
|
|
|
ActionMailer::Base.default_url_options
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|