about summary refs log tree commit diff
path: root/app/controllers/well_known/keybase_proof_config_controller.rb
blob: eb41e586f84843d7557afcc50952d43285bd4e0d (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module WellKnown
  class KeybaseProofConfigController < ActionController::Base
    def show
      render json: {}, serializer: ProofProvider::Keybase::ConfigSerializer
    end
  end
end