I registered the rate limiter like the following but it is enabled for all routes
To Reproduce
this.bind(RateLimitSecurityBindings.RATELIMITCONFIG).to({
RatelimitActionMiddleware: true,
});
this.bind(RateLimitSecurityBindings.CONFIG).to({
name: 'redis',
type: 'RedisStore',
enabledByDefault: false,
});
this.component(RateLimiterComponent );
Expected behavior
rateLimit should be disabled for all routes
Additional context
"loopback4-ratelimiter": "7.0.2"
"@loopback/core": "6.0.2",
"@loopback/express": "7.0.2",
I registered the rate limiter like the following but it is enabled for all routes
To Reproduce
Expected behavior
rateLimit should be disabled for all routes
Additional context