Merged
Conversation
9493d31 to
9960748
Compare
fc49fcf to
e81fb36
Compare
e81fb36 to
824bd22
Compare
1466a37 to
0cad368
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
graph TD Start(Matrix Event) --> Pipeline(Main Sequential Pipeline) Pipeline --> A(Canonicalize Event) A --> B(Parallel Pipeline) B --> C(Auth Sequential Pipeline) B --- B1(Hash Validation) B --- B2(Signature Validation) C --- C1(Fetch Auth Events) C1 --> C2(Validate Auth Chain) C2 --> C3(Validate Room Rules) C3 --> Result(Valid Result) Fail(Invalid Result) A -.-> Fail B1 -.-> Fail B2 -.-> Fail C1 -.-> Fail C2 -.-> Fail C3 -.-> Fail classDef pipeline fill:#606060,stroke:#c0c0c0,stroke-width:2px,color:#ffffff classDef success fill:#2e7d32,stroke:#4caf50,stroke-width:2px,color:#ffffff classDef failure fill:#c62828,stroke:#ef5350,stroke-width:2px,color:#ffffff classDef step fill:none,stroke:#c0c0c0,stroke-width:1px class Pipeline,B,C pipeline class Result success class Fail failure class A,B1,B2,C1,C2,C3 step