merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit f8b543f2598f7e18a7ac9f3277cf0151331e4bbc
parent 5b08f476ec93193756f1152ffbae722cee9e07d3
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 26 Oct 2016 19:49:45 +0200

add back office

Diffstat:
Mdoc/arch.dot | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/doc/arch.dot b/doc/arch.dot @@ -1,18 +1,22 @@ digraph G { - user[label="User browser"]; + user[label="Customer browser"]; + admin[label="Shop admin"]; subgraph cluster_0 { Frontend; + Backoffice; Backend; DBMS; - label="Shop"; + label="Shop server"; } subgraph cluster_1 { Exchange; label="Exchange"; } user->Frontend; + admin->Backoffice; Frontend->Backend; + Backoffice->Backend; Backend->DBMS; Backend->Exchange; }