mirror of
https://github.com/mastodon/documentation
synced 2025-04-11 22:56:17 +02:00
12 lines
253 B
Ruby
12 lines
253 B
Ruby
module RoutingHelper
|
|
extend ActiveSupport::Concern
|
|
include Rails.application.routes.url_helpers
|
|
include GrapeRouteHelpers::NamedRouteMatcher
|
|
|
|
included do
|
|
def default_url_options
|
|
ActionMailer::Base.default_url_options
|
|
end
|
|
end
|
|
end
|