mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-25 06:13:43 +01:00
12 lines
299 B
Ruby
12 lines
299 B
Ruby
module RoutingHelper
|
|
extend ActiveSupport::Concern
|
|
include Rails.application.routes.url_helpers
|
|
include GrapeRouteHelpers::NamedRouteMatcher
|
|
include ActionView::Helpers::AssetUrlHelper
|
|
|
|
included do
|
|
def default_url_options
|
|
ActionMailer::Base.default_url_options
|
|
end
|
|
end
|
|
end
|