fix: update comment and export rateLimiter

This commit is contained in:
Joe Previte 2021-04-15 15:07:07 -07:00
parent f21884cce5
commit 4683d8a077
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -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")