Skip to content

Commit

Permalink
fix(api): hiding a-submit-passport endpoint from docs (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianHymer authored Jun 12, 2023
1 parent 8bb51e5 commit 203b610
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api/registry/api/v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 203b610

Please sign in to comment.