fix(core.gbapp): Refactoring in MD fix in disabling auto-compiling of .gbapps.

This commit is contained in:
Rodrigo Rodriguez 2020-03-30 19:34:44 -03:00
parent ab5d507989
commit ade960ac3e
2 changed files with 0 additions and 4 deletions

View file

@ -138,9 +138,6 @@ export class GuaribasInstance extends Model<GuaribasInstance>
@Column @Column
public whatsappServiceUrl: string; public whatsappServiceUrl: string;
@Column
public whatsappServiceWebhookUrl: string;
@Column @Column
public smsKey: string; public smsKey: string;

View file

@ -218,7 +218,6 @@ export class GBDeployer {
instance.whatsappBotKey = bootInstance.whatsappBotKey; instance.whatsappBotKey = bootInstance.whatsappBotKey;
instance.whatsappServiceNumber = bootInstance.whatsappServiceNumber; instance.whatsappServiceNumber = bootInstance.whatsappServiceNumber;
instance.whatsappServiceUrl = bootInstance.whatsappServiceUrl; instance.whatsappServiceUrl = bootInstance.whatsappServiceUrl;
instance.whatsappServiceWebhookUrl = bootInstance.whatsappServiceWebhookUrl;
instance.storageServer = bootInstance.storageServer; instance.storageServer = bootInstance.storageServer;
instance.storageName = bootInstance.storageName; instance.storageName = bootInstance.storageName;
instance.storageUsername = bootInstance.storageUsername; instance.storageUsername = bootInstance.storageUsername;