amnezia-client/docs/configs/serverConfigImportProcess.plantuml
vladimir.kuznetsov 5a2a96982a added parameter nativeConfigParametersStorage to .vpn format config.
- if the parameter is found, parts of the native config for protocols will be downloaded (so far only wireguard) and updated
- minor refactoring of error handling, now reference are used instead of pointers
- removed temp config with allowedIps
2023-01-26 19:44:08 +03:00

23 lines
511 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)
:remove imported config;
endif
else (no)
:show error;
note right
now only output to the log
end note
stop
endif
stop
@enduml