Skip to content

Commit df97c4f

Browse files
authored
Add NoAuthentication start
1 parent 6783afd commit df97c4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/internals.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Internal implementation notes
22

3-
The authentication control flow is implemented as the following state machine, starting from the `NeedAuthentication` state, and finishing in either `Success` or `Failure`.
3+
The authentication control flow is implemented as the following state machine, starting from the `NeedAuthentication` state (or `NoAuthentication` if `force=true` is passed to `authenticate`), and finishing in either `Success` or `Failure`.
44

55
```mermaid
66
---
@@ -11,6 +11,7 @@ stateDiagram-v2
1111
direction LR
1212
1313
[*] --> NeedAuthentication
14+
[*] --> NoAuthentication
1415
1516
NeedAuthentication --> HasToken
1617
NeedAuthentication --> NoAuthentication

0 commit comments

Comments
 (0)