Skip to content

Commit

Permalink
misc: removed max in schema for api layer
Browse files Browse the repository at this point in the history
  • Loading branch information
sheensantoscapadngan committed Jun 26, 2024
1 parent a1d01d5 commit e0a6f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/server/routes/v1/project-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ export const registerProjectRouter = async (server: FastifyZodProvider) => {
workspaceSlug: z.string().trim()
}),
body: z.object({
auditLogsRetentionDays: z.number().min(1).max(100)
auditLogsRetentionDays: z.number().min(0)
}),
response: {
200: z.object({
Expand Down

0 comments on commit e0a6f09

Please sign in to comment.