mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-12 19:39:36 -06:00
feat/change variable GROUP_UPDATE to GROUPS_UPDATE
This commit is contained in:
parent
edb4fa3b3e
commit
025b183ebf
@ -110,7 +110,7 @@ SQS_GLOBAL_CONTACTS_SET=false
|
|||||||
SQS_GLOBAL_CONTACTS_UPDATE=false
|
SQS_GLOBAL_CONTACTS_UPDATE=false
|
||||||
SQS_GLOBAL_CONTACTS_UPSERT=false
|
SQS_GLOBAL_CONTACTS_UPSERT=false
|
||||||
SQS_GLOBAL_GROUP_PARTICIPANTS_UPDATE=false
|
SQS_GLOBAL_GROUP_PARTICIPANTS_UPDATE=false
|
||||||
SQS_GLOBAL_GROUP_UPDATE=false
|
SQS_GLOBAL_GROUPS_UPDATE=false
|
||||||
SQS_GLOBAL_GROUPS_UPSERT=false
|
SQS_GLOBAL_GROUPS_UPSERT=false
|
||||||
SQS_GLOBAL_LABELS_ASSOCIATION=false
|
SQS_GLOBAL_LABELS_ASSOCIATION=false
|
||||||
SQS_GLOBAL_LABELS_EDIT=false
|
SQS_GLOBAL_LABELS_EDIT=false
|
||||||
|
|||||||
@ -134,7 +134,7 @@ export type Sqs = {
|
|||||||
CONTACTS_UPDATE: boolean;
|
CONTACTS_UPDATE: boolean;
|
||||||
CONTACTS_UPSERT: boolean;
|
CONTACTS_UPSERT: boolean;
|
||||||
GROUP_PARTICIPANTS_UPDATE: boolean;
|
GROUP_PARTICIPANTS_UPDATE: boolean;
|
||||||
GROUP_UPDATE: boolean;
|
GROUPS_UPDATE: boolean;
|
||||||
GROUPS_UPSERT: boolean;
|
GROUPS_UPSERT: boolean;
|
||||||
LABELS_ASSOCIATION: boolean;
|
LABELS_ASSOCIATION: boolean;
|
||||||
LABELS_EDIT: boolean;
|
LABELS_EDIT: boolean;
|
||||||
@ -520,7 +520,7 @@ export class ConfigService {
|
|||||||
CONTACTS_UPDATE: process.env?.SQS_GLOBAL_CONTACTS_UPDATE === 'true',
|
CONTACTS_UPDATE: process.env?.SQS_GLOBAL_CONTACTS_UPDATE === 'true',
|
||||||
CONTACTS_UPSERT: process.env?.SQS_GLOBAL_CONTACTS_UPSERT === 'true',
|
CONTACTS_UPSERT: process.env?.SQS_GLOBAL_CONTACTS_UPSERT === 'true',
|
||||||
GROUP_PARTICIPANTS_UPDATE: process.env?.SQS_GLOBAL_GROUP_PARTICIPANTS_UPDATE === 'true',
|
GROUP_PARTICIPANTS_UPDATE: process.env?.SQS_GLOBAL_GROUP_PARTICIPANTS_UPDATE === 'true',
|
||||||
GROUP_UPDATE: process.env?.SQS_GLOBAL_GROUP_UPDATE === 'true',
|
GROUPS_UPDATE: process.env?.SQS_GLOBAL_GROUPS_UPDATE === 'true',
|
||||||
GROUPS_UPSERT: process.env?.SQS_GLOBAL_GROUPS_UPSERT === 'true',
|
GROUPS_UPSERT: process.env?.SQS_GLOBAL_GROUPS_UPSERT === 'true',
|
||||||
LABELS_ASSOCIATION: process.env?.SQS_GLOBAL_LABELS_ASSOCIATION === 'true',
|
LABELS_ASSOCIATION: process.env?.SQS_GLOBAL_LABELS_ASSOCIATION === 'true',
|
||||||
LABELS_EDIT: process.env?.SQS_GLOBAL_LABELS_EDIT === 'true',
|
LABELS_EDIT: process.env?.SQS_GLOBAL_LABELS_EDIT === 'true',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user