fix(api): bump clients list limit max from 200 to 1000 (ProjectEdit fetches all)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
admin
2026-05-01 13:51:54 +03:00
parent 90cebb0e0f
commit a5330fd46e
+1 -1
View File
@@ -18,7 +18,7 @@ const ClientUpsert = z.object({
const ListQuery = z.object({
q: z.string().optional(),
limit: z.coerce.number().int().min(1).max(200).default(100),
limit: z.coerce.number().int().min(1).max(1000).default(100),
});
export async function clientsRoutes(app: FastifyInstance) {