summary refs log tree commit diff
path: root/v1.87/auth_chain_diff.dot
diff options
context:
space:
mode:
authorMadLittleMods <MadLittleMods@users.noreply.github.com>2023-06-27 15:30:28 +0000
committerMadLittleMods <MadLittleMods@users.noreply.github.com>2023-06-27 15:30:28 +0000
commit0c31d36a941738b77f181f6de37ae168ba7bb5f6 (patch)
treef5752111d907972ef2e671b37555d8fb72453958 /v1.87/auth_chain_diff.dot
parentdeploy: 25c55a9d2267b09da3e18090ee538782d6771a27 (diff)
downloadsynapse-0c31d36a941738b77f181f6de37ae168ba7bb5f6.tar.xz
deploy: 472c2c72f6af21504291691e89ac8296bbbef7ea
Diffstat (limited to 'v1.87/auth_chain_diff.dot')
-rw-r--r--v1.87/auth_chain_diff.dot32
1 files changed, 32 insertions, 0 deletions
diff --git a/v1.87/auth_chain_diff.dot b/v1.87/auth_chain_diff.dot
new file mode 100644
index 0000000000..978d579ada
--- /dev/null
+++ b/v1.87/auth_chain_diff.dot
@@ -0,0 +1,32 @@
+digraph auth {
+    nodesep=0.5;
+    rankdir="RL";
+
+    C [label="Create (1,1)"];
+
+    BJ [label="Bob's Join (2,1)", color=red];
+    BJ2 [label="Bob's Join (2,2)", color=red];
+    BJ2 -> BJ [color=red, dir=none];
+
+    subgraph cluster_foo {
+        A1 [label="Alice's invite (4,1)", color=blue];
+        A2 [label="Alice's Join (4,2)", color=blue];
+        A3 [label="Alice's Join (4,3)", color=blue];
+        A3 -> A2 -> A1 [color=blue, dir=none];
+        color=none;
+    }
+
+    PL1 [label="Power Level (3,1)", color=darkgreen];
+    PL2 [label="Power Level (3,2)", color=darkgreen];
+    PL2 -> PL1 [color=darkgreen, dir=none];
+
+    {rank = same; C; BJ; PL1; A1;}
+
+    A1 -> C [color=grey];
+    A1 -> BJ [color=grey];
+    PL1 -> C [color=grey];
+    BJ2 -> PL1 [penwidth=2];
+
+    A3 -> PL2 [penwidth=2];
+    A1 -> PL1 -> BJ -> C [penwidth=2];
+}