mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
18 lines
340 B
Ruby
18 lines
340 B
Ruby
# frozen_string_literal: true
|
|
|
|
module WellKnown
|
|
class KeybaseProofConfigController < ActionController::Base
|
|
before_action :check_enabled
|
|
|
|
def show
|
|
render json: {}, serializer: ProofProvider::Keybase::ConfigSerializer
|
|
end
|
|
|
|
private
|
|
|
|
def check_enabled
|
|
head 404 unless Setting.enable_keybase
|
|
end
|
|
end
|
|
end
|