fix: users pagination remove min/max as its a string not a number, also add new env var to example

pull/9078/head
Agusti Fernandez Pardo 2022-07-14 19:44:24 +02:00
parent c352720877
commit aa12f893e8
2 changed files with 1 additions and 3 deletions

View File

@ -1,2 +1,3 @@
API_KEY_PREFIX=cal_
DATABASE_URL="postgresql://postgres:@localhost:5450/calendso"
NEXT_PUBLIC_WEBAPP_URL=http://localhost:3000

View File

@ -4,14 +4,11 @@ import z from "zod";
const withPage = z.object({
page: z
.string()
.min(1)
.optional()
.default("1")
.transform((n) => parseInt(n)),
take: z
.string()
.min(10)
.max(100)
.optional()
.default("10")
.transform((n) => parseInt(n)),