fix(oidc): rate-limit identity for username

This commit is contained in:
KernelDeimos
2026-02-18 17:25:15 -05:00
parent 2b802143fc
commit d0c2e9b7fc
@@ -46,7 +46,7 @@ module.exports = {
}
const svc_edgeRateLimit = req.services.get('edge-rate-limit');
if ( ! svc_edgeRateLimit.check('change-email-start') ) {
if ( ! svc_edgeRateLimit.check('change-username-start') ) {
return res.status(429).send('Too many requests.');
}