From d7f8e579880d7fc90deead0899e9c83045736eea Mon Sep 17 00:00:00 2001 From: masonh <1444864+masonh@users.noreply.github.com> Date: Fri, 18 Feb 2022 18:57:36 +0000 Subject: [PATCH] Update backup data types in config schema Swapped the maxFiles and folderName data types for webDAV and Google Drive backup uploads --- meshcentral-config-schema.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meshcentral-config-schema.json b/meshcentral-config-schema.json index 5f353a5f..0cb73765 100644 --- a/meshcentral-config-schema.json +++ b/meshcentral-config-schema.json @@ -187,12 +187,12 @@ "description": "Enabled automated upload of the server backups to a Google Drive account, once enabled you need to go in \"My Server\" tab as administrator to associate the account.", "properties": { "folderName": { - "type": "integer", + "type": "string", "default": "MeshCentral-Backups", "description": "The name of the folder to create in the Google Drive account." }, "maxFiles": { - "type": "string", + "type": "integer", "default": null, "description": "The maximum number of files to keep in the Google Drive folder, older files will be removed if needed." } @@ -215,12 +215,12 @@ "description": "WebDAV account password." }, "folderName": { - "type": "integer", + "type": "string", "default": "MeshCentral-Backups", "description": "The name of the folder to create in the WebDAV account." }, "maxFiles": { - "type": "string", + "type": "integer", "default": null, "description": "The maximum number of files to keep in the WebDAV folder, older files will be removed if needed." }