about summary refs log tree commit diff
path: root/app/controllers/well_known/host_meta_controller.rb
blob: 2e9298c4ae641a9d5b0188b600ec1e92b03e06c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module WellKnown
  class HostMetaController < ActionController::Base
    include RoutingHelper

    before_action { response.headers['Vary'] = 'Accept' }

    def show
      @webfinger_template = "#{webfinger_url}?resource={uri}"

      respond_to do |format|
        format.xml { render content_type: 'application/xrd+xml' }
      end

      expires_in 3.days, public: true
    end
  end
end