This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-03-18 21:00:55 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module WellKnown
|
|
|
|
class KeybaseProofConfigController < ActionController::Base
|
|
|
|
def show
|
2019-07-23 11:10:42 +02:00
|
|
|
render json: {}, serializer: ProofProvider::Keybase::ConfigSerializer, root: 'keybase_config'
|
2019-03-18 21:00:55 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|