blob: 82bfd3575a4cd952082a9ef469f180cee89f8913 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# frozen_string_literal: true
module WellKnown
class HostMetaController < ApplicationController
def show
@webfinger_template = "#{webfinger_url}?resource={uri}"
respond_to do |format|
format.xml { render content_type: 'application/xrd+xml' }
end
end
end
end
|