This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-29 15:23:45 -07:00
|
|
|
# frozen_string_literal: true
|
2017-04-13 04:09:07 -07:00
|
|
|
|
|
|
|
module WellKnown
|
2023-04-19 07:07:29 -07:00
|
|
|
class HostMetaController < ActionController::Base # rubocop:disable Rails/ApplicationController
|
2017-06-02 13:21:36 -07:00
|
|
|
include RoutingHelper
|
|
|
|
|
2017-04-13 04:09:07 -07:00
|
|
|
def show
|
|
|
|
@webfinger_template = "#{webfinger_url}?resource={uri}"
|
2019-07-08 03:03:45 -07:00
|
|
|
expires_in 3.days, public: true
|
2020-01-02 20:28:56 -08:00
|
|
|
render content_type: 'application/xrd+xml', formats: [:xml]
|
2017-04-13 04:09:07 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|