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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user