mirror of
https://github.com/cdr/code-server.git
synced 2026-01-21 23:55:29 +01:00
fix: update comment and export rateLimiter
This commit is contained in:
parent
f21884cce5
commit
4683d8a077
1 changed files with 2 additions and 2 deletions
|
|
@ -12,8 +12,8 @@ export enum Cookie {
|
|||
}
|
||||
|
||||
// RateLimiter wraps around the limiter library for logins.
|
||||
// It allows 2 logins every minute and 12 logins every hour.
|
||||
class RateLimiter {
|
||||
// It allows 2 logins every minute plus 12 logins every hour.
|
||||
export class RateLimiter {
|
||||
private readonly minuteLimiter = new Limiter(2, "minute")
|
||||
private readonly hourLimiter = new Limiter(12, "hour")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue