Skip to content

Commit

Permalink
Merge pull request #668 from ssoroka-tc/patch-1
Browse files Browse the repository at this point in the history
fix oauth2-jwt.md mermaid rendering issue
  • Loading branch information
danielgtaylor authored Dec 5, 2024
2 parents 3cde41a + f291680 commit 53f6a5f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/docs/how-to/oauth2-jwt.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ Huma does not provide any built-in access token issuing functionality. Instead,

```mermaid
graph LR
User -->|1. Login| Auth0
Auth0 -->|2. Issue access token| User
User -->|1: Login| Auth0
Auth0 -->|2: Issue access token| User
Auth0 -.->|Refresh JWKS| API
User --->|3. Make request| API
API -->|4. Verify access token & roles| Validate
Validate -->|5. Accept/reject| API
API --->|6. Success| Handler
User --->|3: Make request| API
API -->|4: Verify access token & roles| Validate
Validate -->|5: Accept/reject| API
API --->|6: Success| Handler
```

The access token may be issued in different flavors & formats, but for the remainder of this document we will assume they are [JWTs](https://jwt.io/).
Expand Down

0 comments on commit 53f6a5f

Please sign in to comment.