gab-social/app/controllers/well_known/webfinger_controller.rb

10 lines
173 B
Ruby
Raw Normal View History

2019-07-02 03:10:25 -04:00
# frozen_string_literal: true
module WellKnown
class WebfingerController < ActionController::Base
def show
raise GabSocial::NotPermittedError
2019-07-02 03:10:25 -04:00
end
end
end