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
|
|
|
|
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
|