Move captcha support to another branch until I get time to fix it

This reverts commit 626d32d22b.
This commit is contained in:
Elijahr2411
2023-02-11 14:29:06 +00:00
parent 626d32d22b
commit 006edd4453
6 changed files with 1 additions and 66 deletions

View File

@@ -18,7 +18,6 @@ export class User {
Config : IConfig;
IP : string;
vote : boolean | null;
captchaValidated : boolean;
// Rate limiters
ChatRateLimit : RateLimiter;
LoginRateLimit : RateLimiter;
@@ -53,7 +52,6 @@ export class User {
this.LoginRateLimit.on('limit', () => this.closeConnection());
this.TurnRateLimit = new RateLimiter(5, 3);
this.TurnRateLimit.on('limit', () => this.closeConnection());
this.captchaValidated = false;
}
assignGuestName(existingUsers : string[]) : string {
var username;