From e1a6091f9446cbdda078875130297a4b01d96052 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Mon, 11 Jul 2022 15:31:34 -0700 Subject: [PATCH] Updated new account captcha in config.json schema. --- meshcentral-config-schema.json | 1 + 1 file changed, 1 insertion(+) diff --git a/meshcentral-config-schema.json b/meshcentral-config-schema.json index 14b39226..a05ff4d4 100644 --- a/meshcentral-config-schema.json +++ b/meshcentral-config-schema.json @@ -344,6 +344,7 @@ "minify": { "type": "boolean", "default": false, "description": "When enabled, the server will send reduced sided web pages." }, "newAccounts": { "type": "boolean", "default": false, "description": "When set to true, allow new user accounts to be created from the login page." }, "newAccountsPass": { "type": "string", "default": null, "description": "When set this password will be required in order to create a new account from the login screen." }, + "newAccountsCaptcha": { "type": "boolean", "default": false, "description": "When set to true, users will get a CAPTCHA when creating a new account from the login screen." }, "newAccountsUserGroups": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "userNameIsEmail": { "type": "boolean", "default": false, "description": "When enabled, the username of each account is also the email address of the account." }, "newAccountEmailDomains": { "type": "array", "uniqueItems": true, "items": { "type": "string" } },