about summary refs log tree commit diff
path: root/app/controllers/well_known/keybase_proof_config_controller.rb
blob: e1d43ecbe9a1ad9c18c5944abbd8b81a2596bb05 (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, root: 'keybase_config'
    end
  end
end