2017-04-29 17:23:45 -05:00
|
|
|
# frozen_string_literal: true
|
2017-04-13 06:09:07 -05:00
|
|
|
|
|
|
|
module WellKnown
|
2023-04-19 09:07:29 -05:00
|
|
|
class HostMetaController < ActionController::Base # rubocop:disable Rails/ApplicationController
|
2017-06-02 15:21:36 -05:00
|
|
|
include RoutingHelper
|
|
|
|
|
2017-04-13 06:09:07 -05:00
|
|
|
def show
|
|
|
|
@webfinger_template = "#{webfinger_url}?resource={uri}"
|
2019-07-08 05:03:45 -05:00
|
|
|
expires_in 3.days, public: true
|
2020-01-02 22:28:56 -06:00
|
|
|
render content_type: 'application/xrd+xml', formats: [:xml]
|
2017-04-13 06:09:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|