mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-12-29 13:15:40 +01:00
11 lines
253 B
Ruby
11 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
|