diff options
Diffstat (limited to 'users/app')
-rw-r--r-- | users/app/controllers/webfinger_controller.rb | 3 | ||||
-rw-r--r-- | users/app/views/webfinger/search.xml.erb (renamed from users/app/views/webfinger/search.erb) | 0 |
2 files changed, 3 insertions, 0 deletions
diff --git a/users/app/controllers/webfinger_controller.rb b/users/app/controllers/webfinger_controller.rb index ac05934..d3a4ad3 100644 --- a/users/app/controllers/webfinger_controller.rb +++ b/users/app/controllers/webfinger_controller.rb @@ -1,15 +1,18 @@ class WebfingerController < ApplicationController + respond_to :xml, :json layout false def host_meta @host_meta = Webfinger::HostMetaPresenter.new(request) + respond_with @host_meta end def search username = params[:q].split('@')[0].to_s.downcase user = User.find_by_login(username) || not_found @subject = Webfinger::UserPresenter.new(user, request) + respond_with @subject end end diff --git a/users/app/views/webfinger/search.erb b/users/app/views/webfinger/search.xml.erb index 0bcb7e5..0bcb7e5 100644 --- a/users/app/views/webfinger/search.erb +++ b/users/app/views/webfinger/search.xml.erb |