Skip to content

Commit

Permalink
Update and rename states.md to states.mdd
Browse files Browse the repository at this point in the history
  • Loading branch information
terrywbrady authored Apr 1, 2024
1 parent 10db0cb commit 8a530aa
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 117 deletions.
117 changes: 0 additions & 117 deletions design/queue-2023/states.md

This file was deleted.

36 changes: 36 additions & 0 deletions design/queue-2023/states.mdd
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
graph LR
START --> Pending
click START "javascript:alert(222)" "Tip"
Pending --> Held
Pending --> Processing
Held -.-> Processing
Processing --> Reporting
Reporting --> COMPLETED
Reporting --> Failed
Failed -.-> UpdateReporting
UpdateReporting --> Failed
UpdateReporting --> COMPLETED
Failed -.-> DELETED
Held -.-> DELETED

graph TD
START --> Pending
Pending --> Held
Pending --> Estimating
Held -.-> Pending
Estimating --> Provisioning
Provisioning --> Downloading
Downloading --> Processing
Downloading --> Failed
Failed -.-> Downloading
Processing --> Recording
Processing --> Failed
Failed -.-> Processing
Recording --> Notify
Recording --> Failed
Failed -.-> Recording
Notify --> COMPLETED
Notify --> Failed
Failed -.-> Notify
Failed -.-> DELETED
Held -.-> DELETED

0 comments on commit 8a530aa

Please sign in to comment.