chore(backend): format

This commit is contained in:
sam 2025-02-28 16:53:53 +01:00
parent 7d6d4631b8
commit cd24196cd1
Signed by: sam
GPG key ID: B4EF20DDE721CAA1

View file

@ -23,8 +23,11 @@ public class EmailRateLimiter
{ {
private readonly ConcurrentDictionary<string, RateLimiter> _limiters = new(); private readonly ConcurrentDictionary<string, RateLimiter> _limiters = new();
private readonly FixedWindowRateLimiterOptions _limiterOptions = private readonly FixedWindowRateLimiterOptions _limiterOptions = new()
new() { Window = TimeSpan.FromHours(2), PermitLimit = 3 }; {
Window = TimeSpan.FromHours(2),
PermitLimit = 3,
};
private RateLimiter GetLimiter(string bucket) => private RateLimiter GetLimiter(string bucket) =>
_limiters.GetOrAdd(bucket, _ => new FixedWindowRateLimiter(_limiterOptions)); _limiters.GetOrAdd(bucket, _ => new FixedWindowRateLimiter(_limiterOptions));