gab-social/app/controllers/well_known/webfinger_controller.rb
mgabdev ec499eb1b8 Updated .well-known routes
• Updated:
- .well-known routes
2020-05-25 21:04:40 -04:00

10 lines
173 B
Ruby

# frozen_string_literal: true
module WellKnown
class WebfingerController < ActionController::Base
def show
raise GabSocial::NotPermittedError
end
end
end