feat: added option to generate qrcode as soon as the instance is created

This commit is contained in:
Davidson Gomes
2023-06-13 17:23:52 -03:00
parent 849d570bcb
commit c63da9cd6e
5 changed files with 46 additions and 8 deletions

View File

@@ -55,6 +55,7 @@ export const instanceNameSchema: JSONSchema7 = {
],
},
},
qrcode: { type: 'boolean', enum: [true, false] },
},
...isNotEmpty('instanceName'),
};