We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02ed29e + 3840a4d commit ab60a9eCopy full SHA for ab60a9e
1 file changed
backend/keystone.ts
@@ -101,7 +101,8 @@ export default withAuth(config({
101
102
app.use('/api/graphql', uploadLimiter);
103
app.use('/api/graphql', apiLimiter);
104
- app.use('/api/validate-magic-token', apiLimiter);
+ // Token validation endpoint is not rate limited - it's a lightweight
105
+ // check that shouldn't count against user limits
106
107
// Validate magic token endpoint
108
app.get('/api/validate-magic-token', async (req, res) => {
0 commit comments