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

@@ -2,4 +2,5 @@ export class InstanceDto {
instanceName: string;
webhook?: string;
events?: string[];
qrcode?: boolean;
}