amnezia-client/docs/configs/serverConfigImportProcess.plantuml
vladimir.kuznetsov ebd287d4b8 added documentation describing the process of importing a server config
- added documentation describing the processing of the server config when trying to open a VPN connection
- added documentation describing config for wireguard
2023-01-24 09:48:03 +03:00

23 lines
No EOL
498 B
Text

@startuml serverConfigImportProcess
start
:import server config in any format;
:decode server config into json;
if (server config contains valid server credentials || containers) then (yes)
:show json server config to user;
if (user clicked continue import) then (yes)
:append server config to app internal settings;
else (no)
:do nothing;
endif
else (no)
:show error;
note right
now only output to the log
end note
stop
endif
stop
@enduml