diaspora/app/controllers/social_relay_controller.rb
2017-09-17 19:29:15 +02:00

9 lines
172 B
Ruby

# frozen_string_literal: true
class SocialRelayController < ApplicationController
respond_to :json
def well_known
render json: SocialRelayPresenter.new
end
end