fix(api): filter events by profileId for export route

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-05-21 20:52:26 +02:00
parent af7146f555
commit ce184b157f
3 changed files with 4 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ import type { FastifyPluginCallback, FastifyRequest } from 'fastify';
const exportRouter: FastifyPluginCallback = async (fastify) => {
await activateRateLimiter({
fastify,
max: 10,
max: 100,
timeWindow: '10 seconds',
});