From 4662a0a0b9cb5254ac28531908efd9919dba4715 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sat, 2 Jul 2022 11:58:04 -0700 Subject: [PATCH] Updated the config.json schema to better document the backup/restore options in the My Server tab, #4212 --- meshcentral-config-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshcentral-config-schema.json b/meshcentral-config-schema.json index 46060972..3c4a5ba6 100644 --- a/meshcentral-config-schema.json +++ b/meshcentral-config-schema.json @@ -442,8 +442,8 @@ "type": [ "object", "boolean" ], "additionalProperties": false, "properties": { - "Backup": { "type": "boolean", "default": true, "description": "Allows administrators to backup the server from the My Server tab." }, - "Restore": { "type": "boolean", "default": true, "description": "Allows administrators to restore the server from the My Server tab." }, + "Backup": { "type": "boolean", "default": true, "description": "Allows administrators to backup the server from the My Server tab. This option can only enabled when the NeDB databse is in use. For other databases, this option disabled and the setting is ignored." }, + "Restore": { "type": "boolean", "default": true, "description": "Allows administrators to restore the server from the My Server tab. This option can only enabled when the NeDB databse is in use. For other databases, this option disabled and the setting is ignored." }, "Upgrade": { "type": "boolean", "default": true, "description": "Allows administrators to update the server from the My Server tab." }, "ErrorLog": { "type": "boolean", "default": true, "description": "Allows administrators to see the server crash log the server from the My Server tab." }, "Console": { "type": "boolean", "default": true, "description": "Allows administrators to access the server console from the My Server tab." },