From 64e3d30f506af7a28b8c6e22e802a69d819c7646 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Thu, 3 Jun 2021 17:40:21 -0700 Subject: [PATCH] Assistant customization added to schema. --- meshcentral-config-schema.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/meshcentral-config-schema.json b/meshcentral-config-schema.json index dbde110c..e7c5a837 100644 --- a/meshcentral-config-schema.json +++ b/meshcentral-config-schema.json @@ -446,6 +446,15 @@ "fileName": { "type": "string", "default": "meshagent", "description": "The agent filename." } } }, + "assistantCustomization": { + "type": "object", + "additionalProperties": false, + "description": "Use this section to customize the MeshCentral Assistant.", + "properties": { + "title": { "type": "string", "default": "MeshCentral Assistant", "description": "Name to show as MeshCentral Assistant dialog title." }, + "image": { "type": "string", "default": null, "description": "The filename of a image file in .png format located in meshcentral-data to display in MeshCentral Assistant, image should be square and from 64x64 to 128x128." } + } + }, "userAllowedIP": { "type": "string" }, "userBlockedIP": { "type": "string" }, "agentAllowedIP": { "type": "string" },