Skip to content

Commit

Permalink
README.md revision
Browse files Browse the repository at this point in the history
  • Loading branch information
na-stewart committed Nov 22, 2024
1 parent c1c2867 commit f83e8c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Verifies the client's account via two-step session code.
| **code** | 24KF19 |
```python
@app.post("api/security/verify")
@app.put("api/security/verify")
async def on_verify(request):
two_step_session = await verify_account(request)
return json("You have verified your account and may login!", two_step_session.json)
Expand Down Expand Up @@ -223,7 +223,7 @@ Fulfills client authentication session's second factor requirement via two-step
| **code** | XGED2U |
```python
@app.post("api/security/fulfill-2fa")
@app.put("api/security/fulfill-2fa")
async def on_two_factor_authentication(request):
authentication_session = await fulfill_second_factor(request)
response = json(
Expand Down

0 comments on commit f83e8c4

Please sign in to comment.