fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima

This commit is contained in:
Rodrigo Rodriguez 2023-11-26 17:56:02 -03:00
parent 60a9e2f7e5
commit 8a61d1f0a1

View file

@ -590,13 +590,15 @@ export class GBMinService {
await this.adminService.setValue(instance.instanceId, `${tokenName}expiresOn`, token['expiresOn'].toString());
await this.adminService.setValue(instance.instanceId, `${tokenName}AntiCSRFAttackState`, null);
// Inform the home for default .gbui after finishing token retrival.
res.redirect(process.env.BOT_URL);
}
}
);
}
// Inform the home for default .gbui after finishing token retrival.
res.redirect(process.env.BOT_URL);
});
}