forked from DecentralizedClimateFoundation/DCIPs
22 lines
330 B
Plaintext
22 lines
330 B
Plaintext
@startuml
|
|
[*] --> Draft
|
|
|
|
state Draft {
|
|
[*] --> Ready
|
|
Ready --> UnderReview : Submit for Voting
|
|
}
|
|
|
|
state UnderReview {
|
|
Approved : Approved
|
|
ChangesRequired : Changes Required
|
|
Blacklisted : Blacklisted
|
|
}
|
|
|
|
[*] --> Merged
|
|
|
|
Draft --> Approved : Merge into DCIPs
|
|
ChangesRequired --> UnderReview : Resubmit for Voting
|
|
|
|
@enduml
|
|
|