You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ratelimits are important for the invoice-submission form so that users cannot abuse the system.
I recommend allowing a few submission per day.
Ratelimits for other endpoints may also be implemented but they aren't as big of a priority as those endpoints will require authentication anyways after #1.
Implementing this could be achieved with tower::limit::rate::RateLimitLayer or then by using governor.
The text was updated successfully, but these errors were encountered:
Ratelimits are important for the invoice-submission form so that users cannot abuse the system.
I recommend allowing a few submission per day.
Ratelimits for other endpoints may also be implemented but they aren't as big of a priority as those endpoints will require authentication anyways after #1.
Implementing this could be achieved with
tower::limit::rate::RateLimitLayer
or then by using governor.The text was updated successfully, but these errors were encountered: