@using BTCPayServer.Plugins.DynamicRateLimits @model DynamicRateLimitSettings

Rate limit configuration

@if (Model.RateLimits is not null) { @for (var index = 0; index < Model.RateLimits.Length; index++) { } }
Rate Limit Actions
@inject DynamicRateLimitsService DynamicRateLimitsService
    @foreach (var rateLimit in DynamicRateLimitsService.OriginalLimits) {
  • @rateLimit
  • }
@section PageFootContent { }