From 8e69926f1116eb2dffce3262b8ae392426c0fe8a Mon Sep 17 00:00:00 2001 From: loks0n <22452787+loks0n@users.noreply.github.com> Date: Wed, 8 Apr 2026 18:40:13 +0100 Subject: [PATCH] docs: remove fictional Security Layer from architecture diagram Replace the made-up Security Layer abstraction with accurate direct connections: all APIs (REST/GraphQL/Realtime) talk directly to Cache and Queue; AntiVirus connects only from Storage, which is the only service that actually scans files via ClamAV. Co-Authored-By: Claude Sonnet 4.6 --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cd347b69cb..8dc492e156 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,6 @@ flowchart TD classDef gateway fill:#d5e8d4,stroke:#82b366,color:#000 classDef api fill:#e1d5e7,stroke:#9673a6,color:#000 classDef service fill:#f5f5f5,stroke:#bbb,color:#000 - classDef security fill:#d5e8d4,stroke:#82b366,color:#000 classDef hot fill:#f8cecc,stroke:#b85450,color:#000 classDef store fill:#fff2cc,stroke:#d6b656,color:#000 classDef compute fill:#dae8fc,stroke:#6c8ebf,color:#000 @@ -231,8 +230,8 @@ flowchart TD Clients --> LB{{Loadbalancer}}:::gateway LB --> Console(Console):::api & GQL(GraphQL API):::api & REST(REST API):::api & RT(Realtime API):::api & SSL{{SSL Gateway}}:::gateway REST --> APIServices - REST & GQL & RT --> SecLayer[Security Layer]:::security - SecLayer --> Cache & Queue & AV + REST & GQL & RT --> Cache & Queue + Storage --> AV Cache --> DB Queue --> Workers Workers --> DB