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