ec499eb1b8
• Updated: - .well-known routes
10 lines
173 B
Ruby
10 lines
173 B
Ruby
# frozen_string_literal: true
|
|
|
|
module WellKnown
|
|
class WebfingerController < ActionController::Base
|
|
def show
|
|
raise GabSocial::NotPermittedError
|
|
end
|
|
end
|
|
end
|