openvidu-deployment: azure - single node - fix azure ui labels

master
cruizba 2025-09-16 14:08:25 +02:00
parent bb5c7d4e39
commit 1b4b14c1d7
1 changed files with 14 additions and 2 deletions

View File

@ -160,7 +160,10 @@
{ {
"name": "initialMeetAdminPassword", "name": "initialMeetAdminPassword",
"type": "Microsoft.Common.PasswordBox", "type": "Microsoft.Common.PasswordBox",
"label": "Initial Meet Admin Password", "label": {
"password": "Initial Meet Admin Password",
"confirmPassword": "Confirm Password"
},
"toolTip": "Initial password for the 'admin' user in OpenVidu Meet. If not provided, a random password will be generated.", "toolTip": "Initial password for the 'admin' user in OpenVidu Meet. If not provided, a random password will be generated.",
"constraints": { "constraints": {
"required": false, "required": false,
@ -168,13 +171,19 @@
"validationMessage": "Password can only contain letters, numbers, underscores and hyphens.", "validationMessage": "Password can only contain letters, numbers, underscores and hyphens.",
"validations": [] "validations": []
}, },
"options": {
"hideConfirmation": true
},
"infoMessages": [], "infoMessages": [],
"visible": true "visible": true
}, },
{ {
"name": "initialMeetApiKey", "name": "initialMeetApiKey",
"type": "Microsoft.Common.PasswordBox", "type": "Microsoft.Common.PasswordBox",
"label": "Initial Meet API Key", "label": {
"password": "Initial Meet API Key",
"confirmPassword": "Confirm API Key"
},
"toolTip": "Initial API key for OpenVidu Meet. If not provided, no API key will be set and the user can set it later from Meet Console.", "toolTip": "Initial API key for OpenVidu Meet. If not provided, no API key will be set and the user can set it later from Meet Console.",
"constraints": { "constraints": {
"required": false, "required": false,
@ -182,6 +191,9 @@
"validationMessage": "API key can only contain letters, numbers, underscores and hyphens.", "validationMessage": "API key can only contain letters, numbers, underscores and hyphens.",
"validations": [] "validations": []
}, },
"options": {
"hideConfirmation": true
},
"infoMessages": [], "infoMessages": [],
"visible": true "visible": true
} }