- added documentation describing the processing of the server config when trying to open a VPN connection - added documentation describing config for wireguard
23 lines
No EOL
498 B
Text
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 |