Skip to content

Commit 1905435

Browse files
committed
fix: site/docs
1 parent 63d72be commit 1905435

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

site/docs/security/access-control.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,6 @@ When a user accesses a graph, their effective permission is resolved through a 5
3232
5. server.defaultAccess ← fallback
3333
```
3434

35-
```mermaid
36-
flowchart TD
37-
A[Request access to graph] --> B{graph.access[userId]?}
38-
B -->|found| R1[Return permission]
39-
B -->|not found| C{project.access[userId]?}
40-
C -->|found| R2[Return permission]
41-
C -->|not found| D{workspace.access[userId]?}
42-
D -->|found| R3[Return permission]
43-
D -->|not found| E{server.access[userId]?}
44-
E -->|found| R4[Return permission]
45-
E -->|not found| F[Return server.defaultAccess]
46-
```
47-
4835
This means you can set a broad default and override it at any level.
4936

5037
## Default behavior

0 commit comments

Comments
 (0)