From 203b610f6dc773e2f0332cfd3f9884688f2d9d5d Mon Sep 17 00:00:00 2001 From: Lucian Date: Mon, 12 Jun 2023 14:32:10 -0700 Subject: [PATCH] fix(api): hiding a-submit-passport endpoint from docs (#279) --- api/registry/api/v1.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/registry/api/v1.py b/api/registry/api/v1.py index 74e5c0683..f68e7a2c9 100644 --- a/api/registry/api/v1.py +++ b/api/registry/api/v1.py @@ -135,6 +135,8 @@ def submit_passport(request, payload: SubmitPassportPayload) -> DetailedScoreRes This API will return a `DetailedScoreResponse` structure with status **PROCESSING** immediatly while your passport is being pulled from storage and the scoring algorithm is run.\n You need to check for the status of the operation by calling the `/score/{int:scorer_id}/{str:address}` API. The operation will have finished when the status returned is **DONE** """, + # Don't list in the docs for now + include_in_schema=False, ) async def a_submit_passport( request, payload: SubmitPassportPayload