Prep admin form for production deployment

Only display Wifi Settings if raspap is installed.
Change_manager is now more standalone and can be run to monitor when settings.txt is last modified.
This commit is contained in:
Ana Custura 2026-03-06 12:26:33 +00:00
parent 0cfd475031
commit 83fd4c4ec5
5 changed files with 106 additions and 69 deletions

View file

@ -24,4 +24,4 @@ class Config:
ENABLE_FILE_VIEWER = "true"
ENABLE_DELTACHAT = "true"
CONVENE_INSTALL_PATH = "/chat"
ENABLE_WIFI_SHARING = "true"
ENABLE_WIFI_SHARING = "true" if os.path.exists("/var/www/html/raspap") else "false"