(userId: string)
| 119 | } |
| 120 | |
| 121 | isUserRateLimited(userId: string): boolean { |
| 122 | return !this.rateLimiter.allow(userId); |
| 123 | } |
| 124 | |
| 125 | retryAfterSeconds(userId: string): number { |
| 126 | return this.rateLimiter.retryAfterSeconds(userId); |
no test coverage detected