From: ThibG Date: Fri, 2 Jun 2017 20:21:36 +0000 (+0200) Subject: Ensure well_known controllers use WEB_DOMAIN by including RoutingHelper (#2388) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=d567a382e30b6d6f2b32dc249380e24b8d5f2be7;p=mastodon.git Ensure well_known controllers use WEB_DOMAIN by including RoutingHelper (#2388) This fixes #2375. --- diff --git a/app/controllers/well_known/host_meta_controller.rb b/app/controllers/well_known/host_meta_controller.rb index 82bfd3575..40f96eaa2 100644 --- a/app/controllers/well_known/host_meta_controller.rb +++ b/app/controllers/well_known/host_meta_controller.rb @@ -2,6 +2,8 @@ module WellKnown class HostMetaController < ApplicationController + include RoutingHelper + def show @webfinger_template = "#{webfinger_url}?resource={uri}" diff --git a/app/controllers/well_known/webfinger_controller.rb b/app/controllers/well_known/webfinger_controller.rb index 84f3015e8..1c27b2b18 100644 --- a/app/controllers/well_known/webfinger_controller.rb +++ b/app/controllers/well_known/webfinger_controller.rb @@ -2,6 +2,8 @@ module WellKnown class WebfingerController < ApplicationController + include RoutingHelper + def show @account = Account.find_local!(username_from_resource) @canonical_account_uri = @account.to_webfinger_s